mirror of
https://github.com/getlago/lago.git
synced 2025-01-05 13:08:00 +07:00
chore(docker-compose): update Traefik config for Let's Encrypt and domain templating
- Enable Let's Encrypt support with ACME resolver 'myresolver' - Update Traefik rules to support templated DOMAIN variable - Remove unnecessary port mappings from API and frontend services - Secure Traefik dashboard and disable 'exposedbydefault' for improved security
This commit is contained in:
parent
30aabdd8a9
commit
7be44df4cf
@ -54,26 +54,27 @@ services:
|
|||||||
container_name: traefik
|
container_name: traefik
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
command:
|
command:
|
||||||
- "--api.insecure=true"
|
- "--api.insecure=false"
|
||||||
|
- "--api.dashboard=true"
|
||||||
- "--providers.docker=true"
|
- "--providers.docker=true"
|
||||||
|
- "--providers.docker.exposedbydefault=false"
|
||||||
- "--entrypoints.web.address=:80"
|
- "--entrypoints.web.address=:80"
|
||||||
- "--entrypoints.websecure.address=:443"
|
- "--entrypoints.websecure.address=:443"
|
||||||
- "--entrypoints.web.http.redirections.entrypoint.to=websecure"
|
- "--certificatesresolvers.myresolver.acme.tlschallenge=true"
|
||||||
- "--certificatesresolvers.selfsigned.acme.tlschallenge=true"
|
- "--certificatesresolvers.myresolver.acme.email=your_email@domain.tld"
|
||||||
- "--certificatesresolvers.selfsigned.acme.email=your-email@example.com"
|
- "--certificatesresolvers.myresolver.acme.storage=/letsencrypt/acme.json"
|
||||||
- "--certificatesresolvers.selfsigned.acme.storage=/letsencrypt/acme.json"
|
|
||||||
ports:
|
ports:
|
||||||
- "80:80"
|
- "80:80"
|
||||||
- "8443:443"
|
- "443:443"
|
||||||
volumes:
|
volumes:
|
||||||
- "/var/run/docker.sock:/var/run/docker.sock:ro"
|
- "/var/run/docker.sock:/var/run/docker.sock:ro"
|
||||||
- traefik_certificates:/letsencrypt
|
- traefik_certificates:/letsencrypt
|
||||||
- traefik_config:/traefik
|
- traefik_config:/traefik
|
||||||
|
|
||||||
labels:
|
labels:
|
||||||
- "traefik.http.routers.api.entrypoints=websecure"
|
- "traefik.http.routers.traefik.rule=Host(`traefik.${DOMAIN}`)"
|
||||||
- "traefik.http.routers.api.rule=Host(`localhost`)"
|
- "traefik.http.routers.traefik.entrypoints=websecure"
|
||||||
- "traefik.http.services.api.loadbalancer.server.port=3000"
|
- "traefik.http.routers.traefik.tls.certresolver=myresolver"
|
||||||
|
- "traefik.http.services.traefik.loadbalancer.server.port=8080"
|
||||||
|
|
||||||
api:
|
api:
|
||||||
container_name: lago-api
|
container_name: lago-api
|
||||||
@ -94,12 +95,11 @@ services:
|
|||||||
interval: 10s
|
interval: 10s
|
||||||
timeout: 60s
|
timeout: 60s
|
||||||
retries: 5
|
retries: 5
|
||||||
ports:
|
|
||||||
- ${API_PORT}:3000
|
|
||||||
labels:
|
labels:
|
||||||
- "traefik.enable=true"
|
- "traefik.enable=true"
|
||||||
- "traefik.http.routers.api.entrypoints=websecure"
|
- "traefik.http.routers.api.entrypoints=websecure"
|
||||||
- "traefik.http.routers.api.rule=Host(`localhost`)"
|
- "traefik.http.routers.api.rule=Host(`api.${DOMAIN}`)"
|
||||||
|
- "traefik.http.routers.api.tls.certresolver=myresolver"
|
||||||
- "traefik.http.services.api.loadbalancer.server.port=3000"
|
- "traefik.http.services.api.loadbalancer.server.port=3000"
|
||||||
volumes:
|
volumes:
|
||||||
- lago_storage_data:/app/storage
|
- lago_storage_data:/app/storage
|
||||||
@ -114,19 +114,19 @@ services:
|
|||||||
environment:
|
environment:
|
||||||
<<: *front-environment
|
<<: *front-environment
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "curl", "-f", "http://localhost:${FRONT_PORT}"]
|
test: ["CMD", "curl", "-f", "http://localhost:80"]
|
||||||
interval: 30s
|
interval: 30s
|
||||||
timeout: 10s
|
timeout: 10s
|
||||||
retries: 3
|
retries: 3
|
||||||
labels:
|
labels:
|
||||||
- "traefik.enable=true"
|
- "traefik.enable=true"
|
||||||
- "traefik.http.routers.front.entrypoints=websecure"
|
- "traefik.http.routers.front.entrypoints=websecure"
|
||||||
- "traefik.http.routers.front.rule=Host(`localhost`)"
|
- "traefik.http.routers.front.rule=Host(`app.${DOMAIN}`)"
|
||||||
|
- "traefik.http.routers.front.tls.certresolver=myresolver"
|
||||||
- "traefik.http.services.front.loadbalancer.server.port=80"
|
- "traefik.http.services.front.loadbalancer.server.port=80"
|
||||||
volumes:
|
volumes:
|
||||||
- lago_storage_data:/app/storage
|
- lago_storage_data:/app/storage
|
||||||
ports:
|
|
||||||
- ${FRONT_PORT:-8080}:80
|
|
||||||
db:
|
db:
|
||||||
image: postgres:14-alpine
|
image: postgres:14-alpine
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
@ -140,7 +140,7 @@ services:
|
|||||||
volumes:
|
volumes:
|
||||||
- lago_postgres_data:/data/postgres
|
- lago_postgres_data:/data/postgres
|
||||||
ports:
|
ports:
|
||||||
- ${POSTGRES_PORT}:${POSTGRES_PORT}
|
- "${POSTGRES_PORT}:${POSTGRES_PORT}"
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD-SHELL", "pg_isready -U ${POSTGRES_USER}"]
|
test: ["CMD-SHELL", "pg_isready -U ${POSTGRES_USER}"]
|
||||||
interval: 10s
|
interval: 10s
|
||||||
@ -155,7 +155,7 @@ services:
|
|||||||
volumes:
|
volumes:
|
||||||
- lago_redis_data:/data
|
- lago_redis_data:/data
|
||||||
ports:
|
ports:
|
||||||
- ${REDIS_PORT:-6379}:${REDIS_PORT:-6379}
|
- "${REDIS_PORT:-6379}:${REDIS_PORT:-6379}"
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "redis-cli", "ping"]
|
test: ["CMD", "redis-cli", "ping"]
|
||||||
interval: 10s
|
interval: 10s
|
||||||
@ -207,5 +207,4 @@ services:
|
|||||||
condition: service_healthy
|
condition: service_healthy
|
||||||
command: ['./scripts/start.migrate.sh']
|
command: ['./scripts/start.migrate.sh']
|
||||||
volumes:
|
volumes:
|
||||||
- lago_storage_data:/app/storage
|
- lago_storage_data:/app/storage
|
||||||
|
|
6
env
6
env
@ -19,12 +19,14 @@ REDIS_PASSWORD=
|
|||||||
API_PORT=3000
|
API_PORT=3000
|
||||||
FRONT_PORT=80
|
FRONT_PORT=80
|
||||||
|
|
||||||
|
|
||||||
# Lago API Configuration
|
# Lago API Configuration
|
||||||
LAGO_API_URL=http://localhost:3000
|
DOMAIN=yourdomain.told
|
||||||
|
LAGO_API_URL=https://api.yourdomain.tld
|
||||||
|
LAGO_FRONT_URL=https://app.yourdomain.tld
|
||||||
SECRET_KEY_BASE=your-secret-key-base-hex-64
|
SECRET_KEY_BASE=your-secret-key-base-hex-64
|
||||||
RAILS_ENV=production
|
RAILS_ENV=production
|
||||||
LAGO_RAILS_STDOUT=true
|
LAGO_RAILS_STDOUT=true
|
||||||
LAGO_FRONT_URL=http://localhost
|
|
||||||
LAGO_PDF_URL=http://pdf:3000
|
LAGO_PDF_URL=http://pdf:3000
|
||||||
LAGO_DISABLE_SIGNUP=false
|
LAGO_DISABLE_SIGNUP=false
|
||||||
APP_ENV=production
|
APP_ENV=production
|
||||||
|
Loading…
Reference in New Issue
Block a user