리버스 프록시로서의 Traefik
1. 비밀번호를 암호화하기 위해 apache2-utils 설정
apt install apach2-utils
이 Docker 파일에서 사용자 정의 도메인 요구 사항에 대한 여러 값을 변경할 수 있으며 주석은 구성 사용법을 간략하게 설명합니다.
Docker 작성
version: '3'
services:
traefik:
image: traefik:latest
container_name: traefik
restart: unless-stopped
security_opt:
- no-new-privileges:true #Prevents the UID transition while running a set UID binary
networks:
- proxy
ports:
- 80:80
- 443:443
volumes:
- /etc/localtime:/etc/localtime:ro #Ensure that docker date matches server time
- /var/run/docker.sock:/var/run/docker.sock:ro
- ./data/traefik.yml:/traefik.yml:ro #traefik configuration files
- ./data/acme.json:/acme.json #to tell traefik to save ssl certs here
command:
--api.insecure=true # Enabling insecure api, NOT RECOMMENDED FOR PRODUCTION
labels:
- "traefik.enable=true"
- "traefik.http.routers.traefik.entrypoints=http"
- "traefik.http.routers.traefik.rule=Host(`traefik.domain.com`)"
- "traefik.http.middlewares.traefik-auth.basicauth.users= admin:@@$apr1@@$buoyPbo.@@$NOlqTVpSHfumf9lOiMYwI1" #Generated password
- "traefik.http.middlewares.traefik-https-redirect.redirectscheme.scheme=https"
- "traefik.http.routers.traefik.middlewares=traefik-https-redirect"
- "traefik.http.routers.traefik-secure.entrypoints=https"
- "traefik.http.routers.traefik-secure.rule=Host(`traefik.domain.com`)"
- "traefik.http.routers.traefik-secure.middlewares=traefik-auth"
- "traefik.http.routers.traefik-secure.tls=true"
- "traefik.http.routers.traefik-secure.tls.certresolver=http"
- "traefik.http.routers.traefik-secure.service=api@internal"
networks:
proxy:
external: true
api:
dashboard: true
entryPoints:
http:
address: ":80"
https:
address: ":443"
providers:
docker:
endpoint: "unix:///var/run/docker.sock"
exposedByDefault: false
certificatesResolvers:
http:
acme:
email: <<email.com>>
storage: acme.json
httpChallenge:
entryPoint: http
도커 컨테이너 시작
docker-compose up -d
가도 좋아!!!
Reference
이 문제에 관하여(리버스 프록시로서의 Traefik), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/goodjeansgj/traefik-as-a-reverse-proxy-1d2b텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)