2021-11-30 18:20:42 +08:00
|
|
|
<VirtualHost *:80>
|
|
|
|
# PHP match
|
|
|
|
<FilesMatch "\.php$">
|
|
|
|
SetHandler "proxy:fcgi://nextcloud-aio-nextcloud:9000"
|
|
|
|
</FilesMatch>
|
|
|
|
# Nextcloud dir
|
|
|
|
DocumentRoot /var/www/html/
|
|
|
|
<Directory /var/www/html/>
|
|
|
|
Options Indexes FollowSymLinks
|
|
|
|
Require all granted
|
|
|
|
AllowOverride All
|
|
|
|
Options FollowSymLinks MultiViews
|
|
|
|
Satisfy Any
|
|
|
|
<IfModule mod_dav.c>
|
|
|
|
Dav off
|
|
|
|
</IfModule>
|
|
|
|
</Directory>
|
|
|
|
# Deny access to .ht files
|
|
|
|
<Files ".ht*">
|
|
|
|
Require all denied
|
|
|
|
</Files>
|
2022-01-28 18:36:34 +08:00
|
|
|
|
|
|
|
# Fix zero file sizes
|
|
|
|
# See https://github.com/nextcloud/server/issues/3056#issuecomment-954209565
|
|
|
|
SetEnv proxy-sendcl 1
|
2021-11-30 18:20:42 +08:00
|
|
|
</VirtualHost>
|