Restructed project and added docker support.

This commit is contained in:
2018-03-21 19:17:31 +00:00
parent f42396d784
commit 89d164f615
63 changed files with 155 additions and 140 deletions

10
src/config.php Normal file
View File

@@ -0,0 +1,10 @@
<?php
$config = array();
$config['BasePath'] = (@$_SERVER['HTTPS'] == 'on' ? 'https://' : 'http://').$_SERVER['HTTP_HOST'].'/';
$config['Debug'] = False;
if (is_file('config.local.php'))
include('config.local.php');