1234567891011121314151617181920212223242526 |
- Listen 8000
- <VirtualHost *:8000>
- # Nextcloud dir
- DocumentRoot {{ http_webroot }}/nextcloud/
- <Directory {{ http_webroot }}>/nextcloud/>
- Options Indexes FollowSymLinks
- Require all granted
- AllowOverride All
- Options FollowSymLinks MultiViews
-
- <IfModule mod_dav.c>
- Dav off
- </IfModule>
- </Directory>
- # Deny access to .ht files
- <Files ".ht*">
- Require all denied
- </Files>
- # Fix zero file sizes
- # See https://github.com/nextcloud/server/issues/3056#issuecomment-954209565
- SetEnv proxy-sendcl 1
- # See https://httpd.apache.org/docs/current/en/mod/core.html#limitrequestbody
- LimitRequestBody 0
- </VirtualHost>
|