Hey. I'm new with traefic and just cant understand what I did wrong with my configs. This configuration redirect successfully http->https but only if enter URL without scheme. If me or someone else uses address with scheme http://.... traefic did nothing and I get an error. ((
traefic docker-compose.yml:
services:
traefik:
image: traefik
container_name: traefik
restart: unless-stopped
security_opt:
- no-new-privileges:true
ports:
- 80:80
- 443:443
# - 6443:6443
volumes:
- /etc/localtime:/etc/localtime:ro
- /var/run/docker.sock:/var/run/docker.sock:ro
- ./data/traefik.yml:/traefik.yml:ro
- ./data/acme.json:/acme.json
- ./data/custom/:/custom/:ro
- ./data/basic.auth:/basic.auth
- ./logs/:/logs/
labels:
- "traefik.enable=true"
- "traefik.http.routers.traefik.entrypoints=https"
- "traefik.http.routers.traefik.rule=Host(`${DOMAIN}`)"
- "traefik.http.routers.traefik.tls=true"
- "traefik.http.routers.traefik.tls.certresolver=letsEncrypt"
- "traefik.http.routers.traefik.service=api@internal"
- "traefik.http.services.traefik-traefik.loadbalancer.server.port=888"
- "traefik.http.routers.traefik.middlewares=traefik-auth"
- "traefik.http.middlewares.traefik-auth.basicAuth.usersFile=/basic.auth"
# global redirect to https
- "traefik.http.routers.http-catchall.rule=hostregexp(`{host:.+}`)"
- "traefik.http.routers.http-catchall.entrypoints=http"
- "traefik.http.routers.http-catchall.middlewares=redirect-to-https"
- "traefik.http.middlewares.redirect-to-https.redirectscheme.scheme=https"
- "traefik.http.middlewares.redirect-to-https.redirectscheme.permanent=true"
networks:
- net_traefik
networks:
net_traefik:
name: net_traefik
traefic traefik.yml
global:
checkNewVersion: true
sendAnonymousUsage: false
log:
level: ERROR
format: common
filePath: /logs/traefik.log
accesslog:
format: common
filePath: /logs/access.log
serversTransport:
insecureSkipVerify: true
api:
dashboard: true
entryPoints:
http:
address: ":80"
https:
address: ":443"
providers:
docker:
endpoint: "unix:///var/run/docker.sock"
exposedByDefault: false
certificatesResolvers:
letsEncrypt:
acme:
email: mymail@gmail.com
storage: acme.json
httpChallenge:
entryPoint: http
.
another docker-compose.yml
services:
dokuwiki:
image: bitnami/dokuwiki
labels:
- "traefik.enable=true"
- "traefik.http.routers.wiki.entrypoints=http"
- "traefik.http.routers.wiki.rule=Host(`${DOMAIN}`)"
- "traefik.http.routers.wiki.tls=true"
- "traefik.http.routers.wiki.tls.certresolver=letsEncrypt"
- "traefik.http.routers.wiki.service=wiki-service"
- "traefik.http.services.wiki-service.loadbalancer.server.port=8080"
- "traefik.http.middlewares.redirect-to-https.redirectscheme.scheme=https"
- "traefik.http.middlewares.redirect-to-https.redirectscheme.permanent=true"
- "traefik.docker.network=net_traefik"
environment:
- DOKUWIKI_USERNAME=admin
- DOKUWIKI_PASSWORD=admin
- DOKUWIKI_WIKI_NAME=amega-wiki
volumes:
- ./data:/bitnami
networks:
- net_wiki
- net_traefik
volumes:
data:
networks:
net_wiki:
name: net_wiki
net_traefik:
name: net_traefik
external: true