mirror of
https://github.com/nold360/hive-apps
synced 2024-12-22 04:21:22 +00:00
update(nextcloud): upstream chart 5.0.0
This commit is contained in:
parent
c4c4bcbd4a
commit
e7532f6522
2 changed files with 28 additions and 6 deletions
|
@ -11,12 +11,9 @@ config:
|
|||
|
||||
apps:
|
||||
- name: nextcloud
|
||||
#repoURL: https://nextcloud.github.io/helm
|
||||
#chart: nextcloud
|
||||
#targetRevision: 3.1.0
|
||||
repoURL: https://github.com/Nold360/nextcloud-helm
|
||||
targetRevision: f/multifix
|
||||
path: charts/nextcloud
|
||||
repoURL: https://nextcloud.github.io/helm
|
||||
chart: nextcloud
|
||||
targetRevision: 5.0.0
|
||||
secrets:
|
||||
- name: nextcloud-user
|
||||
keys:
|
||||
|
|
|
@ -80,6 +80,31 @@ ingress:
|
|||
external-dns.alpha.kubernetes.io/target: gnu.one
|
||||
external-dns.alpha.kubernetes.io/cloudflare-proxied: "false"
|
||||
|
||||
nginx.ingress.kubernetes.io/server-snippet: |-
|
||||
server_tokens off;
|
||||
proxy_hide_header X-Powered-By;
|
||||
rewrite ^/.well-known/webfinger /index.php/.well-known/webfinger last;
|
||||
rewrite ^/.well-known/nodeinfo /index.php/.well-known/nodeinfo last;
|
||||
rewrite ^/.well-known/host-meta /public.php?service=host-meta last;
|
||||
rewrite ^/.well-known/host-meta.json /public.php?service=host-meta-json;
|
||||
location = /.well-known/carddav {
|
||||
return 301 $scheme://$host/remote.php/dav;
|
||||
}
|
||||
location = /.well-known/caldav {
|
||||
return 301 $scheme://$host/remote.php/dav;
|
||||
}
|
||||
location = /robots.txt {
|
||||
allow all;
|
||||
log_not_found off;
|
||||
access_log off;
|
||||
}
|
||||
location ~ ^/(?:build|tests|config|lib|3rdparty|templates|data)/ {
|
||||
deny all;
|
||||
}
|
||||
location ~ ^/(?:autotest|occ|issue|indie|db_|console) {
|
||||
deny all;
|
||||
}
|
||||
|
||||
tls:
|
||||
- secretName: nextcloud-tls
|
||||
hosts:
|
||||
|
|
Loading…
Reference in a new issue