Allow iframing from Nextcloud for more apps again
This commit is contained in:
parent
0ac0a6eeb2
commit
65049a09b5
|
@ -10,6 +10,8 @@ data:
|
||||||
annotations:
|
annotations:
|
||||||
kubernetes.io/tls-acme: "true"
|
kubernetes.io/tls-acme: "true"
|
||||||
nginx.ingress.kubernetes.io/proxy-body-size: "5g"
|
nginx.ingress.kubernetes.io/proxy-body-size: "5g"
|
||||||
|
nginx.ingress.kubernetes.io/configuration-snippet: |
|
||||||
|
more_set_headers "Content-Security-Policy: frame-ancestors 'self' files.${domain}";
|
||||||
hosts:
|
hosts:
|
||||||
- host: "${forgejo_domain}"
|
- host: "${forgejo_domain}"
|
||||||
paths:
|
paths:
|
||||||
|
@ -84,7 +86,7 @@ data:
|
||||||
cors:
|
cors:
|
||||||
ENABLED: true
|
ENABLED: true
|
||||||
SCHEME: "https"
|
SCHEME: "https"
|
||||||
ALLOW_DOMAIN: "files.ftt.gmbh"
|
ALLOW_DOMAIN: "files.${domain}"
|
||||||
ALLOW_CREDENTIALS: true
|
ALLOW_CREDENTIALS: true
|
||||||
# log:
|
# log:
|
||||||
# LEVEL: "Debug"
|
# LEVEL: "Debug"
|
||||||
|
|
|
@ -17,7 +17,7 @@ data:
|
||||||
certManager: true
|
certManager: true
|
||||||
annotations:
|
annotations:
|
||||||
nginx.ingress.kubernetes.io/configuration-snippet: |
|
nginx.ingress.kubernetes.io/configuration-snippet: |
|
||||||
more_set_headers "Content-Security-Policy: frame-ancestors 'self' ${nextcloud_domain}";
|
more_set_headers "Content-Security-Policy: frame-ancestors 'self' files.${domain}";
|
||||||
commonLabels:
|
commonLabels:
|
||||||
stackspin.net/backupSet: "invoiceninja"
|
stackspin.net/backupSet: "invoiceninja"
|
||||||
podLabels:
|
podLabels:
|
||||||
|
|
|
@ -18,6 +18,8 @@ data:
|
||||||
enabled: true
|
enabled: true
|
||||||
annotations:
|
annotations:
|
||||||
kubernetes.io/tls-acme: "true"
|
kubernetes.io/tls-acme: "true"
|
||||||
|
nginx.ingress.kubernetes.io/configuration-snippet: |
|
||||||
|
more_set_headers "Content-Security-Policy: frame-ancestors 'self' files.${domain}";
|
||||||
hosts:
|
hosts:
|
||||||
- host: "${zammad_domain}"
|
- host: "${zammad_domain}"
|
||||||
paths:
|
paths:
|
||||||
|
|
|
@ -1,9 +0,0 @@
|
||||||
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
||||||
kind: Kustomization
|
|
||||||
resources:
|
|
||||||
#- stackspin-zulip-override.yaml # no push notifications for now
|
|
||||||
- stackspin-nextcloud-override.yaml
|
|
||||||
- stackspin-nginx-ingress-override.yaml
|
|
||||||
- stackspin-apps-custom.yaml
|
|
||||||
- storageclass-retain.yaml
|
|
||||||
- source-controller-patch.yaml
|
|
|
@ -5,6 +5,30 @@ metadata:
|
||||||
name: stackspin-zulip-override
|
name: stackspin-zulip-override
|
||||||
data:
|
data:
|
||||||
values.yaml: |
|
values.yaml: |
|
||||||
zulip:
|
ingress:
|
||||||
environment:
|
annotations:
|
||||||
SETTING_PUSH_NOTIFICATION_BOUNCER_URL: 'https://push.zulipchat.com'
|
nginx.ingress.kubernetes.io/configuration-snippet: |
|
||||||
|
more_set_headers "Content-Security-Policy: frame-ancestors 'self' files.${domain}";
|
||||||
|
|
||||||
|
#zulip:
|
||||||
|
# environment:
|
||||||
|
# SETTING_PUSH_NOTIFICATION_BOUNCER_URL: 'https://push.zulipchat.com'
|
||||||
|
## https://github.com/zulip/docker-zulip/blob/main/kubernetes/chart/zulip/values.yaml
|
||||||
|
#ingress:
|
||||||
|
# enabled: true
|
||||||
|
# annotations:
|
||||||
|
# # Tell cert-manager to automatically get a TLS certificate
|
||||||
|
# kubernetes.io/tls-acme: "true"
|
||||||
|
# # Allow bigger uploads, for image and file attaching.
|
||||||
|
# # 25M is the default limit of Zulip itself, so we just follow that
|
||||||
|
# # suggestion here. If you want to increase this further, you'd have to
|
||||||
|
# # configure that limit in Zulip as well.
|
||||||
|
# nginx.ingress.kubernetes.io/proxy-body-size: "25m"
|
||||||
|
# hosts:
|
||||||
|
# - host: "${zulip_domain}"
|
||||||
|
# paths:
|
||||||
|
# - path: "/"
|
||||||
|
# tls:
|
||||||
|
# - hosts:
|
||||||
|
# - "${zulip_domain}"
|
||||||
|
# secretName: stackspin-zulip
|
||||||
|
|
Loading…
Reference in New Issue