docker-piwigo-stack/fpm.conf

20 lines
441 B
Plaintext
Raw Permalink Normal View History

2019-11-11 22:29:59 +00:00
<VirtualHost *:80>
ServerName ${SERVER_NAME}
<FilesMatch "\.php$">
SetHandler proxy:fcgi://${FPM_HOST}
</FilesMatch>
DocumentRoot /var/www/html/piwigo
<Directory /var/www/html/piwigo>
Options FollowSymLinks MultiViews
# enable the .htaccess rewrites
AllowOverride All
Require all granted
</Directory>
ErrorLog /dev/stderr
CustomLog /dev/stderr combined
</VirtualHost>