From 53edd82909c6784c80f08ec739bd2e0995d7ce72 Mon Sep 17 00:00:00 2001 From: startxfr Date: Sun, 12 Jun 2016 10:45:18 +0200 Subject: change for config pma --- Applications/phpmyadmin/test.php | 5 +++-- Services/apache/sx-httpd.sh | 19 +++++++++++++++++++ Services/php/run.sh | 1 + 3 files changed, 23 insertions(+), 2 deletions(-) diff --git a/Applications/phpmyadmin/test.php b/Applications/phpmyadmin/test.php index a7796a0..2cb53e7 100644 --- a/Applications/phpmyadmin/test.php +++ b/Applications/phpmyadmin/test.php @@ -1,4 +1,5 @@ diff --git a/Services/apache/sx-httpd.sh b/Services/apache/sx-httpd.sh index 707b16d..b404dd6 100644 --- a/Services/apache/sx-httpd.sh +++ b/Services/apache/sx-httpd.sh @@ -75,3 +75,22 @@ function start_service_httpd { tail -f /dev/null & wait ${!} done } + + + +# set env var $2 (val $3) in file $1 +function setEnvironmentVariableInFile { + if [ -z "$3" ]; then + echo "Environment variable '$2' not set." + return + fi + echo "SetEnv $2 $3" >> $1 +} + + +function setSys2HttpEnvironmentVariable { + echo "" >> $1 + for _curVar in `env | awk -F = '{print $1}'`;do + setEnvironmentVariableInFile $1 ${_curVar} ${!_curVar} + done +} \ No newline at end of file diff --git a/Services/php/run.sh b/Services/php/run.sh index 0935290..e3c4c86 100644 --- a/Services/php/run.sh +++ b/Services/php/run.sh @@ -30,5 +30,6 @@ function display_container_php_header { } check_httpd_environment | tee -a $STARTUPLOG +setSys2HttpEnvironmentVariable $APP_PATH/.htaccess display_container_php_header | tee -a $STARTUPLOG start_service_httpd -- cgit v1.2.1