2021-11-30 18:20:42 +08:00
|
|
|
Listen 8000
|
|
|
|
Listen 8080
|
|
|
|
|
|
|
|
CustomLog ${APACHE_LOG_DIR}/access.log combined
|
|
|
|
ErrorLog ${APACHE_LOG_DIR}/error.log
|
|
|
|
|
|
|
|
# Deny access to .ht files
|
|
|
|
<Files ".ht*">
|
|
|
|
Require all denied
|
|
|
|
</Files>
|
|
|
|
|
|
|
|
# Http host
|
|
|
|
<VirtualHost *:8000>
|
|
|
|
# PHP match
|
|
|
|
<FilesMatch "\.php$">
|
|
|
|
SetHandler application/x-httpd-php
|
|
|
|
</FilesMatch>
|
|
|
|
# Master dir
|
|
|
|
DocumentRoot /var/www/docker-aio/php/public/
|
|
|
|
<Directory /var/www/docker-aio/php/public/>
|
|
|
|
RewriteEngine On
|
|
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
|
|
RewriteRule ^ index.php [QSA,L]
|
|
|
|
Options Indexes FollowSymLinks
|
|
|
|
Require all granted
|
|
|
|
AllowOverride All
|
|
|
|
Options FollowSymLinks MultiViews
|
|
|
|
Satisfy Any
|
|
|
|
<IfModule mod_dav.c>
|
|
|
|
Dav off
|
|
|
|
</IfModule>
|
|
|
|
</Directory>
|
|
|
|
</VirtualHost>
|
|
|
|
|
|
|
|
# Https host
|
|
|
|
<VirtualHost *:8080>
|
|
|
|
# Proxy to https
|
|
|
|
ProxyPass / http://localhost:8000/
|
|
|
|
ProxyPassReverse / http://localhost:8000/
|
2021-12-29 21:00:53 +08:00
|
|
|
ProxyPreserveHost On
|
2021-11-30 18:20:42 +08:00
|
|
|
# SSL
|
|
|
|
SSLCertificateKeyFile /etc/apache2/certs/ssl.key
|
|
|
|
SSLCertificateFile /etc/apache2/certs/ssl.crt
|
|
|
|
SSLEngine on
|
|
|
|
SSLProtocol -all +TLSv1.2 +TLSv1.3
|
|
|
|
</VirtualHost>
|
2022-01-28 22:44:12 +08:00
|
|
|
|
|
|
|
# Increase timeout in case e.g. the initial download takes a long time
|
|
|
|
Timeout 7200
|
|
|
|
ProxyTimeout 7200
|