293 字
1 分钟

Traefik Smart Reverse Proxy: Hands-Free Automation

Traefik is a reverse proxy and load balancer implemented in Golang. Its biggest difference from Nginx is that it supports automatic updates of reverse proxy and load balancing configurations.

Official site: https://traefik.io/

Official documentation: https://doc.traefik.io/traefik/

Basic Usage#

Reverse Proxy Use Case#

Key Features#

  • Automatic Docker service discovery

  • Automatic HTTPS configuration

  • Prometheus metrics endpoint

  • Web UI dashboard

  • Forced HTTP 80 → HTTPS 443 redirection

  • Simple configuration

    • Just add the appropriate label tags to your containers to automatically complete reverse proxy routing and load balancing configuration

Create Directories#

Terminal window
mkdir -p data/configurations
touch docker-compose.yml
touch data/traefik.yml
touch data/acme.json
touch data/configurations/dynamic.yml
chmod 600 data/acme.json

Docker Compose#

File path: ~/docker-compose.yml

Terminal window
version: '3.7'
services:
traefik:
image: traefik:latest
container_name: traefik
restart: always
security_opt:
- no-new-privileges:true
ports:
- 80:80
- 443:443
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
# Add folder with dynamic configuration yml
- ./data/configurations:/configurations
networks:
- proxy
labels:
- "traefik.enable=true"
- "traefik.docker.network=proxy"
- "traefik.http.routers.traefik-secure.entrypoints=websecure"
- "traefik.http.routers.traefik-secure.rule=Host(`traefik.yourdomain`)"
- "traefik.http.routers.traefik-secure.middlewares=user-auth@file"
- "traefik.http.routers.traefik-secure.service=api@internal"
networks:
proxy:
external: true

Static Configuration File#

File path: ~/data/traefik.yml

Terminal window
api:
dashboard: true
entryPoints:
web:
address: :80
http:
redirections:
entryPoint:
to: websecure
websecure:
address: :443
http:
middlewares:
- secureHeaders@file
- nofloc@file
tls:
certResolver: letsencrypt
pilot:
dashboard: false
providers:
docker:
endpoint: "unix:///var/run/docker.sock"
exposedByDefault: false
file:
filename: /configurations/dynamic.yml
certificatesResolvers:
letsencrypt:
acme:
email: admin@yourdomain
storage: acme.json
keyType: EC384
httpChallenge:
entryPoint: web
buypass:
acme:
email: admin@yourdomain
storage: acme.json
caServer: https://api.buypass.com/acme/directory
keyType: EC256
httpChallenge:
entryPoint: web

Dynamic Configuration File#

File path: ~/data/configurations/dynamic.yml

Terminal window
# Dynamic configuration
http:
middlewares:
nofloc:
headers:
customResponseHeaders:
Permissions-Policy: "interest-cohort=()"
secureHeaders:
headers:
sslRedirect: true
forceSTSHeader: true
stsIncludeSubdomains: true
stsPreload: true
stsSeconds: 31536000
# UserName : admin
# Password : qwer1234
user-auth:
basicAuth:
users:
- "admin:$apr1$tm53ra6x$FntXd6jcvxYM/YH0P2hcc1"
tls:
options:
default:
cipherSuites:
- TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384
- TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384
- TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256
- TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
- TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305
- TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305
minVersion: VersionTLS12

Create Network#

Terminal window
docker network create proxy

Start#

Terminal window
docker compose up -d
Traefik Smart Reverse Proxy: Hands-Free Automation
https://catcat.blog/en/traefik2-docker.html
作者
猫猫博客
发布于
2023-09-14
许可协议
CC BY-NC-SA 4.0