Skip to content
Snippets Groups Projects
Commit 7f06dc5f authored by Patrick Jentsch's avatar Patrick Jentsch
Browse files

Add settings for https

parent c67c033a
No related branches found
No related tags found
No related merge requests found
...@@ -18,8 +18,15 @@ services: ...@@ -18,8 +18,15 @@ services:
labels: labels:
- "traefik.docker.network=reverse-proxy" - "traefik.docker.network=reverse-proxy"
- "traefik.enable=true" - "traefik.enable=true"
- "traefik.http.routers.proxy.rule=Host(`nopaque.localhost`)" - "traefik.http.routers.nopaque.entrypoints=web"
- "traefik.http.routers.proxy.entrypoints=web" # Change the next line to match your nopaque domain.
- "traefik.http.routers.nopaque.rule=Host(`nopaque.localhost`)"
# Uncomment the next two lines to enable HTTPS.
# - "traefik.http.routers.nopaque.entrypoints=websecure"
# - "traefik.http.routers.nopaque.tls.certresolver=myresolver"
# The next two lines add Basic Authentication. More information: https://docs.traefik.io/middlewares/basicauth/
# - "traefik.http.middlewares.nopaque.basicauth.users=name:hashed-password"
# - "traefik.http.routers.nopaque.middlewares=nopaque"
networks: networks:
- default - default
- reverse-proxy - reverse-proxy
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment