This post has been de-listed
It is no longer included in search results and normal feeds (front page, hot posts, subreddit posts, etc). It remains visible only via the author's post history.
i deployed traefik sucessfully on a vps running docker services. i was able to make the main service 'organizr' redirect through trafik on <organizr.my.simplydoesitvw.com>.
i now want to attach other services to this domain as subpath eg organizr.my.simplydoesitvw.com/syncthing
i put this in my docker compose under the container:
labels:
- "traefik.enable=true"
- "traefik.http.routers.syncthing.rule=Host(`organizr.my.simplydoesitvw.com`) && Path(`/syncthing`)"
- "traefik.http.routers.syncthing.middlewares=organizr-https-redirect"
- "traefik.http.routers.syncthing-secure.entrypoints=https"
- "traefik.http.routers.syncthing-secure.rule=Host(`organizr.my.simplydoesitvw.com`) && Path(`/syncthing`)"
- "traefik.http.routers.syncthing-secure.tls=true"
- "traefik.http.routers.syncthing-secure.tls.certresolver=http"
the page loads but almost ??!!
edit: or for that matter any method of accessing these services without creating multiple dns entries is fine...
SOLVED: using wildcard on A record to reduce clutter!!!
Post Details
- Posted
- 2 years ago
- Reddit URL
- View post on reddit.com
- External URL
- reddit.com/r/Traefik/com...