diff options
| author | Robert Günzler <r@gnzler.io> | 2026-04-23 20:18:07 +0900 |
|---|---|---|
| committer | Robert Günzler <r@gnzler.io> | 2026-08-05 16:43:05 +0200 |
| commit | 175964e8884d0313e908e5da6666e3e5167545dd (patch) | |
| tree | 4ca38804097c965d82053f6fd631644e6de05578 /bundles | |
| parent | 3ea65d612e151854bb656416dc4a0090902eed0f (diff) | |
copyparty: serve under both domains
Signed-off-by: Robert Günzler <r@gnzler.io>
Diffstat (limited to 'bundles')
| -rw-r--r-- | bundles/authelia/files/configuration.yml | 6 | ||||
| -rw-r--r-- | bundles/copyparty/files/kube.yaml | 2 |
2 files changed, 2 insertions, 6 deletions
diff --git a/bundles/authelia/files/configuration.yml b/bundles/authelia/files/configuration.yml index 377f480..0ace0b6 100644 --- a/bundles/authelia/files/configuration.yml +++ b/bundles/authelia/files/configuration.yml @@ -16,12 +16,8 @@ access_control: - domain: 'paper.gzr.im' resources: ['^/api/'] policy: 'bypass' - # bypass for public resources - # - domain: 'cp.gzr.im' - # resources: ['^/$', '^/public/'] - # policy: 'bypass' # group-based access restrictions - - domain: 'cp.gzr.im' + - domain: ['cp.gzr.im', 'cp.demo.gzr.im'] subject: ['group:copyparty', 'group:admins'] policy: 'one_factor' - domain: 'photos.gzr.im' diff --git a/bundles/copyparty/files/kube.yaml b/bundles/copyparty/files/kube.yaml index 9e260c0..3afa21a 100644 --- a/bundles/copyparty/files/kube.yaml +++ b/bundles/copyparty/files/kube.yaml @@ -7,7 +7,7 @@ metadata: traefik.http.routers.copyparty.tls: true traefik.http.routers.copyparty.tls.certresolver: le traefik.http.routers.copyparty.entrypoints: http,https - traefik.http.routers.copyparty.rule: Host(`cp.gzr.im`) + traefik.http.routers.copyparty.rule: Host(`cp.gzr.im`) || Host(`cp.demo.gzr.im`) traefik.http.routers.copyparty.service: copyparty traefik.http.routers.copyparty.middlewares: tls-redirect@file,authelia@file traefik.http.services.copyparty.loadbalancer.server.port: 3923 |