diff options
Diffstat (limited to 'adei/configs')
-rw-r--r-- | adei/configs/apache.conf | 25 | ||||
-rw-r--r-- | adei/configs/apache.passwd | 1 | ||||
-rw-r--r-- | adei/configs/config.actual.php | 22 | ||||
-rw-r--r-- | adei/configs/config.override.php | 0 |
4 files changed, 48 insertions, 0 deletions
diff --git a/adei/configs/apache.conf b/adei/configs/apache.conf new file mode 100644 index 0000000..5ea312d --- /dev/null +++ b/adei/configs/apache.conf @@ -0,0 +1,25 @@ +<Location /adei/admin/> + AuthType Basic + AuthName "ADEI/Admin Authentication" + AuthBasicProvider file + AuthUserFile /adei/cfg/apache.passwd + Require valid-user + Order deny,allow + Deny from all + Allow from 127.0.0.1 + Allow from ::1 + Satisfy Any +</Location> + +<Location /adei/services/control.php> + AuthType Basic + AuthName "ADEI/Control Authentication" + AuthBasicProvider file + AuthUserFile /adei/cfg/apache.passwd + Require valid-user + Order deny,allow + Deny from all + Allow from 127.0.0.1 + Allow from ::1 + Satisfy Any +</Location> diff --git a/adei/configs/apache.passwd b/adei/configs/apache.passwd new file mode 100644 index 0000000..1a7a4bb --- /dev/null +++ b/adei/configs/apache.passwd @@ -0,0 +1 @@ +adei:$apr1$CmdT4hVc$GIf7BaO/POJn8b5GgkR6K/ diff --git a/adei/configs/config.actual.php b/adei/configs/config.actual.php new file mode 100644 index 0000000..4c28e59 --- /dev/null +++ b/adei/configs/config.actual.php @@ -0,0 +1,22 @@ +<?php + function env($var, $default = false) { + $env = getenv($var); + if ($env === false) return $default; + return $env; + } + + $ADEI_SETUP = env("ADEI_SETUP", "all"); + + $ADEI_RELEASE = true; + $LOGGER_LOG_REQUESTS = false; + $LOGGER_LOG_OUTPUT = false; + $LOGGER_STORE_OBJECTS = false; + + $ADEI_DB = array ( + "host" => env("MYSQL_SERVER", "localhost"), + "port" => env("MYSQL_PORT", 0), + "database" => env("MYSQL_DATABASE", "adei"), + "user" => env("MYSQL_USER", "adei"), + "password" => env("MYSQL_PASSWORD", "adei") + ); +?>
\ No newline at end of file diff --git a/adei/configs/config.override.php b/adei/configs/config.override.php new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/adei/configs/config.override.php |