mirror of
https://github.com/linuxserver/reverse-proxy-confs.git
synced 2025-08-22 06:13:49 -07:00
Nextcloud: update WebDAV URL redirects for subfolder
This commit is contained in:
parent
0877269e66
commit
1ab11266d7
1 changed files with 5 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
||||||
## Version 2024/04/25
|
## Version 2024/04/28
|
||||||
# make sure that your nextcloud container is named nextcloud
|
# make sure that your nextcloud container is named nextcloud
|
||||||
# make sure that nextcloud is set to work with the base url /nextcloud/
|
# make sure that nextcloud is set to work with the base url /nextcloud/
|
||||||
# Assuming this container is called "swag", edit your nextcloud container's config
|
# Assuming this container is called "swag", edit your nextcloud container's config
|
||||||
|
@ -48,4 +48,8 @@ location ^~ /nextcloud/ {
|
||||||
|
|
||||||
# Disable proxy buffering
|
# Disable proxy buffering
|
||||||
proxy_buffering off;
|
proxy_buffering off;
|
||||||
|
|
||||||
|
# Nextcloud's redirect for these two `/.well-known` URIs in version 29 did not consider overwritewebroot
|
||||||
|
location = /nextcloud/.well-known/carddav { return 301 /nextcloud/remote.php/dav/; }
|
||||||
|
location = /nextcloud/.well-known/caldav { return 301 /nextcloud/remote.php/dav/; }
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue