docker-apache-for-fpm/fpm.conf-bak

19 lines
434 B
Plaintext
Raw Normal View History

2019-08-04 17:43:43 +00:00
<VirtualHost *:80>
ServerName ${SERVER_NAME}
<FilesMatch \.php$>
SetHandler "proxy:fcgi://${FPM_HOST}"
</FilesMatch>
DocumentRoot /var/www/html/web
<Directory /var/www/html/web>
# enable the .htaccess rewrites
AllowOverride All
Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/app_error.log
CustomLog ${APACHE_LOG_DIR}/app_access.log combined
</VirtualHost>