mirror of
https://github.com/dani-garcia/vaultwarden
synced 2024-11-11 12:32:22 +01:00
Updated Docker Traefik ModSecurity Setup (markdown)
parent
56c83e9ac9
commit
3c8809b2c8
1 changed files with 6 additions and 4 deletions
|
@ -56,20 +56,22 @@ services:
|
||||||
- traefik.enable=true
|
- traefik.enable=true
|
||||||
- traefik.http.middlewares.redirect-https.redirectScheme.scheme=https
|
- traefik.http.middlewares.redirect-https.redirectScheme.scheme=https
|
||||||
- traefik.http.middlewares.redirect-https.redirectScheme.permanent=true
|
- traefik.http.middlewares.redirect-https.redirectScheme.permanent=true
|
||||||
- traefik.http.routers.vw-ui-https.rule=Host(`sub.domain.tld`)
|
- traefik.http.routers.vw-ui-https.rule=Host(`ui-sub.domain.tld`)
|
||||||
- traefik.http.routers.vw-ui-https.entrypoints=websecure
|
- traefik.http.routers.vw-ui-https.entrypoints=websecure
|
||||||
- traefik.http.routers.vw-ui-https.tls=true
|
- traefik.http.routers.vw-ui-https.tls=true
|
||||||
|
- traefik.http.routers.vw-ui-https.tls.certresolver=myresolver
|
||||||
- traefik.http.routers.vw-ui-https.service=vw-ui
|
- traefik.http.routers.vw-ui-https.service=vw-ui
|
||||||
- traefik.http.routers.vw-ui-http.rule=Host(`sub.domain.tld`)
|
- traefik.http.routers.vw-ui-http.rule=Host(`ui-sub.domain.tld`)
|
||||||
- traefik.http.routers.vw-ui-http.entrypoints=web
|
- traefik.http.routers.vw-ui-http.entrypoints=web
|
||||||
- traefik.http.routers.vw-ui-http.middlewares=redirect-https
|
- traefik.http.routers.vw-ui-http.middlewares=redirect-https
|
||||||
- traefik.http.routers.vw-ui-http.service=vw-ui
|
- traefik.http.routers.vw-ui-http.service=vw-ui
|
||||||
- traefik.http.services.vw-ui.loadbalancer.server.port=80
|
- traefik.http.services.vw-ui.loadbalancer.server.port=80
|
||||||
- traefik.http.routers.vw-websocket-https.rule=Host(`sub.domain.tld`) && Path(`/notifications/hub`)
|
- traefik.http.routers.vw-websocket-https.rule=Host(`websocket-sub.domain.tld`) && Path(`/notifications/hub`)
|
||||||
- traefik.http.routers.vw-websocket-https.entrypoints=websecure
|
- traefik.http.routers.vw-websocket-https.entrypoints=websecure
|
||||||
- traefik.http.routers.vw-websocket-https.tls=true
|
- traefik.http.routers.vw-websocket-https.tls=true
|
||||||
|
- traefik.http.routers.vw-websocket-https.tls.certresolver=myresolver
|
||||||
- traefik.http.routers.vw-websocket-https.service=vw-websocket
|
- traefik.http.routers.vw-websocket-https.service=vw-websocket
|
||||||
- traefik.http.routers.vw-websocket-http.rule=Host(`sub.domain.tld`) && Path(`/notifications/hub`)
|
- traefik.http.routers.vw-websocket-http.rule=Host(`websocket-sub.domain.tld`) && Path(`/notifications/hub`)
|
||||||
- traefik.http.routers.vw-websocket-http.entrypoints=web
|
- traefik.http.routers.vw-websocket-http.entrypoints=web
|
||||||
- traefik.http.routers.vw-websocket-http.middlewares=redirect-https
|
- traefik.http.routers.vw-websocket-http.middlewares=redirect-https
|
||||||
- traefik.http.routers.vw-websocket-http.service=vw-websocket
|
- traefik.http.routers.vw-websocket-http.service=vw-websocket
|
||||||
|
|
Loading…
Reference in a new issue