diff options
Diffstat (limited to 'Services')
-rw-r--r-- | Services/apache/sx-httpd.sh | 19 | ||||
-rw-r--r-- | Services/php/run.sh | 1 |
2 files changed, 20 insertions, 0 deletions
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 |