docker-piwigo-stack/fpm.conf
2019-11-11 23:29:59 +01:00

20 lines
441 B
Plaintext

<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>