You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
services:
reverse-proxy:
# The official v3 Traefik docker image
image: traefik:v3.0
# Enables the web UI and tells Traefik to listen to docker
command:
- --api.insecure=true
- --providers.docker=true
- --log.level=DEBUG
- --providers.docker.exposedbydefault=false
- --entrypoints.web.address=:80
- --experimental.plugins.shorty.moduleName=github.com/Spakl-io/shorty
- --experimental.plugins.shorty.version=v1.0.0
ports:
# The HTTP port
- "80:80"
# The Web UI (enabled by --api.insecure=true)
- "8080:8080"
volumes:
# So that Traefik can listen to the Docker events
- /var/run/docker.sock:/var/run/docker.sock
network_mode: bridge
labels:
- "traefik.http.routers.shorty.rule=Host(go.local)"
- "traefik.http.routers.shorty.service=traefik-shorty@docker"
- "traefik.http.routers.shorty.middlewares=shorty1@docker"
- "traefik.http.middlewares.shorty1.plugin.shorty.links.google=https://google.com"
I would expect to see a router for it, but one doesn’t appear.
Are there any diagnostics you’d like?
The text was updated successfully, but these errors were encountered: