lafundicio-wordpress/config/apache-wordpress.conf

19 lines
477 B
Plaintext
Raw Permalink Normal View History

<VirtualHost *:80>
ServerName default
DocumentRoot /app/wordpress
<Directory /app/wordpress>
Options -Indexes +FollowSymLinks +MultiViews
AllowOverride All
Require all granted
</Directory>
<FilesMatch \.php$>
# 2.4.10+ can proxy to unix socket
SetHandler "proxy:fcgi://wordpress:9000"
</FilesMatch>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>