summaryrefslogtreecommitdiffstats
path: root/Services/php/httpd.conf
blob: 1ce768f6b8ea424767cb977f6a79043596c0b830 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#
# This file will be copied into /etc/httpd/conf.d/app.conf and loaded when httpd start
#
DocumentRoot ${DOC_ROOT}
ServerName ${SERVER_NAME}
ServerAdmin cl@startx.fr

ErrorLog  ${LOG_PATH}/error.log
<IfModule log_config_module>
    CustomLog ${LOG_PATH}/access.log combined
</IfModule>

Alias / ${APP_PATH}
<Directory ${APP_PATH}>
    AddDefaultCharset UTF-8
    AllowOverride All
    Order Allow,Deny
    Allow from All
    Require all granted
    DirectoryIndex index.php index.html
</Directory>