mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-01-08 06:37:49 +08:00
23 lines
571 B
Text
23 lines
571 B
Text
|
<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>
|
||
|
</VirtualHost>
|