Compare commits

..

No commits in common. "012a291e28ffde0216a0d3465f6e78c323a3da1d" and "59efad5eb55c309e801773d4d044f0e4b8c72198" have entirely different histories.

2 changed files with 3 additions and 4 deletions

View File

@ -55,7 +55,6 @@ nextcloud:
log_query: false
overwrite.cli.url: ''
maintenance: false
maintenance_window_start: 1
memcache.local: '\OC\Memcache\Redis'
memcache.distributed: '\OC\Memcache\Redis'
memcache.locking: '\OC\Memcache\Redis'

View File

@ -33,8 +33,8 @@ server {
rewrite ^/.well-known/webdav(.*)$ https://$server_name/remote.php/webdav$1 redirect;
rewrite ^/.well-known/host-meta https://$server_name/public.php?service=host-meta last;
rewrite ^/.well-known/host-meta.json https://$server_name/public.php?service=host-meta-json last;
rewrite ^/.well-known/webfinger https://$server_name/index.php$uri last;
rewrite ^/.well-known/nodeinfo https://$server_name/index.php$uri last;
rewrite ^/.well-known/webfinger https://$server_name/public.php?service=webfinger last;
rewrite ^/.well-known/nodeinfo https://$server_name/public.php?service=nodeinfo last;
rewrite ^(/core/doc/[^\/]+/)$ $1/index.html;
try_files $uri $uri/ index.php;
}
@ -58,7 +58,7 @@ server {
try_files $1 =404;
}
location ~* .(png|ico|gif|jpg|jpeg|css|mjs|js|svg)$ {
location ~* .(png|ico|gif|jpg|jpeg|css|js|svg)$ {
expires 2d;
}