123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
-
-
- Mutex file:/var/lock/apache2 default
- PidFile /var/run/apache2/apache2.pid
- Timeout 300
- KeepAlive On
- MaxKeepAliveRequests 100
- KeepAliveTimeout 5
- User www-data
- Group www-data
- HostnameLookups Off
- ErrorLog /var/log/apache2/error.log
- LogLevel warn
-
- IncludeOptional mods-enabled/*.load
- IncludeOptional mods-enabled/*.conf
-
-
- Listen 80
- <IfModule ssl_module>
- Listen 443
- </IfModule>
- <IfModule mod_gnutls.c>
- Listen 443
- </IfModule>
-
- DocumentRoot "/var/www/html/"
-
- <Directory />
- Options FollowSymLinks
- AllowOverride None
- Require all denied
- </Directory>
-
- <Directory /var/www/html/>
- Options FollowSymLinks
- AllowOverride All
- Require all granted
- </Directory>
-
- <Location "/api/">
- ProxyPass http://BACKEND_HOST:BACKEND_PORT/
- ProxyPassReverse http://BACKEND_HOST:BACKEND_PORT/
- </Location>
-
-
- LogFormat "%v:%p %h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" vhost_combined
- LogFormat "%h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" combined
- LogFormat "%h %l %u %t \"%r\" %>s %O" common
- LogFormat "%{Referer}i -> %U" referer
- LogFormat "%{User-agent}i" agent
-
- CustomLog /var/log/apache2/access.log combined
-
- <FilesMatch \.php$>
- SetHandler application/x-httpd-php
- </FilesMatch>
-
-
-
-
- DirectoryIndex disabled
- DirectoryIndex index.php index.html
|