mirror of
https://github.com/nold360/hive-apps
synced 2024-12-22 21:51:20 +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:
|
apps:
|
||||||
- name: nextcloud
|
- name: nextcloud
|
||||||
#repoURL: https://nextcloud.github.io/helm
|
repoURL: https://nextcloud.github.io/helm
|
||||||
#chart: nextcloud
|
chart: nextcloud
|
||||||
#targetRevision: 3.1.0
|
targetRevision: 5.0.0
|
||||||
repoURL: https://github.com/Nold360/nextcloud-helm
|
|
||||||
targetRevision: f/multifix
|
|
||||||
path: charts/nextcloud
|
|
||||||
secrets:
|
secrets:
|
||||||
- name: nextcloud-user
|
- name: nextcloud-user
|
||||||
keys:
|
keys:
|
||||||
|
|
|
@ -80,6 +80,31 @@ ingress:
|
||||||
external-dns.alpha.kubernetes.io/target: gnu.one
|
external-dns.alpha.kubernetes.io/target: gnu.one
|
||||||
external-dns.alpha.kubernetes.io/cloudflare-proxied: "false"
|
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:
|
tls:
|
||||||
- secretName: nextcloud-tls
|
- secretName: nextcloud-tls
|
||||||
hosts:
|
hosts:
|
||||||
|
|
Loading…
Reference in a new issue