20 lines
441 B
Plaintext
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>
|