apache2/conf/apache-wordpress.conf

19 lines
475 B
Plaintext
Raw Normal View History

2022-03-01 15:41:08 +01:00
<VirtualHost *:80>
ServerName default
DocumentRoot /var/www/html
<Directory /var/www/html>
Options -Indexes +FollowSymLinks +MultiViews
AllowOverride All
Require all granted
</Directory>
<FilesMatch \.php$>
# 2.4.10+ can proxy to unix socket
SetHandler "proxy:fcgi://localhost:9000"
</FilesMatch>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>