fix(nextcloud): change nginx redirect options to not add port to query (#3085)
* fix(nextcloud): change nginx redirect options to not add port to query * add two more low-level patches * bump chart version
This commit is contained in:
@@ -33,7 +33,7 @@ sources:
|
|||||||
- https://github.com/nextcloud/docker
|
- https://github.com/nextcloud/docker
|
||||||
- https://github.com/nextcloud/helm
|
- https://github.com/nextcloud/helm
|
||||||
type: application
|
type: application
|
||||||
version: 15.0.0
|
version: 15.0.1
|
||||||
annotations:
|
annotations:
|
||||||
truecharts.org/catagories: |
|
truecharts.org/catagories: |
|
||||||
- cloud
|
- cloud
|
||||||
|
|||||||
@@ -206,6 +206,7 @@ configmap:
|
|||||||
|
|
||||||
server {
|
server {
|
||||||
listen 8080;
|
listen 8080;
|
||||||
|
absolute_redirect off;
|
||||||
|
|
||||||
# Forward Notify_Push "High Performance Backend" to it's own container
|
# Forward Notify_Push "High Performance Backend" to it's own container
|
||||||
location ^~ /push/ {
|
location ^~ /push/ {
|
||||||
@@ -292,6 +293,10 @@ configmap:
|
|||||||
location = /.well-known/carddav { return 301 /remote.php/dav/; }
|
location = /.well-known/carddav { return 301 /remote.php/dav/; }
|
||||||
location = /.well-known/caldav { return 301 /remote.php/dav/; }
|
location = /.well-known/caldav { return 301 /remote.php/dav/; }
|
||||||
|
|
||||||
|
# according to the documentation these two lines are not necessary, but some users are still recieving errors
|
||||||
|
location = /.well-known/webfinger { return 301 /index.php$uri; }
|
||||||
|
location = /.well-known/nodeinfo { return 301 /index.php$uri; }
|
||||||
|
|
||||||
location /.well-known/acme-challenge { try_files $uri $uri/ =404; }
|
location /.well-known/acme-challenge { try_files $uri $uri/ =404; }
|
||||||
location /.well-known/pki-validation { try_files $uri $uri/ =404; }
|
location /.well-known/pki-validation { try_files $uri $uri/ =404; }
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user