diff options
Diffstat (limited to 'Services/apache/sx-httpd.sh')
-rw-r--r-- | Services/apache/sx-httpd.sh | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Services/apache/sx-httpd.sh b/Services/apache/sx-httpd.sh index 57a6e32..ec8c6bb 100644 --- a/Services/apache/sx-httpd.sh +++ b/Services/apache/sx-httpd.sh @@ -8,13 +8,11 @@ function check_httpd_environment { echo "! WARNING : environment var SERVER_NAME is missing..." echo "! WARNING : auto-assigned value : $SERVER_NAME" fi - if [ ! -v DOC_ROOT ]; then - DOC_ROOT="/data/apache" - export DOC_ROOT - fi if [ ! -v APP_PATH ]; then APP_PATH="/data/apache" export APP_PATH + DOC_ROOT=$APP_PATH + export DOC_ROOT fi if [ ! -v LOG_PATH ]; then LOG_PATH="/data/logs/apache" |