-
Notifications
You must be signed in to change notification settings - Fork 79
Specific server providers setups ‐ Traefik
ElGuillermo edited this page Jan 13, 2025
·
6 revisions
🧭 You are here : Wiki home / Additional Setup / Specific server providers setups / Traefik
This needs to be written up but here's a quick guide.
Create a directory called traefik and create a file called compose.yaml
version: '3'
services:
traefik:
image: traefik:v2.2
container_name: traefik
restart: unless-stopped
security_opt:
- no-new-privileges:true
networks:
- traefik-proxy
ports:
- 80:80
- 443:443
volumes:
- /etc/localtime:/etc/localtime:ro
- /var/run/docker.sock:/var/run/docker.sock:ro
- /srv/traefik/traefik.yml:/traefik.yml:ro
- /srv/traefik/acme.json:/acme.json
- /srv/traefik/logs:/var/log/traefik
- /srv/traefik/configuration:/configuration
labels:
- "traefik.enable=true"
- "traefik.http.routers.traefik.entrypoints=http"
# This is the domain to use for traefik status interface
- "traefik.http.routers.traefik.rule=Host(`traefik.domain.com`)"
# # Generate password using bcrypt - https://bcrypt-generator.com/
- "traefik.http.middlewares.traefik-auth.basicauth.users=user:$$apr1$$WysFYSH.$$Melp8/Th0Lam3B/LkiMVl."
- "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:
traefik-proxy:
external: true
Edit the compose.yaml
for CRCON and add the following labels to the frontend service under networks :
labels:
- "traefik.enable=true"
- "traefik.http.routers.portainer.entrypoints=http"
- "traefik.http.routers.rcon.rule=Host(`rcon.domain.com`)"
- "traefik.http.middlewares.rcon-https-redirect.redirectscheme.scheme=https"
- "traefik.http.routers.rcon.middlewares=rcon-https-redirect"
- "traefik.http.routers.rcon-secure.entrypoints=https"
- "traefik.http.routers.rcon-secure.rule=Host(`rcon.domain.com`)"
- "traefik.http.routers.rcon-secure.tls=true"
- "traefik.http.routers.rcon-secure.tls.certresolver=http"
- "traefik.http.routers.rcon-secure.service=rcon"
- "traefik.http.services.rcon.loadbalancer.server.port=80"
- "traefik.docker.network=traefik-proxy"
- "traefik.http.routers.stats.rule=Host(`stats.domain.com`)"
- "traefik.http.middlewares.stats-https-redirect.redirectscheme.scheme=https"
- "traefik.http.routers.stats.middlewares=stats-https-redirect"
- "traefik.http.routers.stats-secure.entrypoints=https"
- "traefik.http.routers.stats-secure.rule=Host(`stats.domain.com`)"
- "traefik.http.routers.stats-secure.tls=true"
- "traefik.http.routers.stats-secure.tls.certresolver=http"
- "traefik.http.routers.stats-secure.service=stats"
- "traefik.http.services.stats.loadbalancer.server.port=7010"
This ensures that traefik can access the frontend Docker instance.
frontend_1: &frontend
image: ${FRONTEND_DOCKER_REPOSITORY}:${TAGGED_VERSION}
ports:
- ${RCONWEB_PORT}:80
- ${RCONWEB_PORT_HTTPS}:443
- ${PUBLIC_STATS_PORT}:81
- ${PUBLIC_STATS_PORT_HTTPS}:444
restart: always
environment:
RCONWEB_EXTERNAL_ADDRESS: ${RCONWEB_EXTERNAL_ADDRESS}
HLL_HOST: ${HLL_HOST}
volumes:
- ./static:/static/
- ./certs:/certs/
depends_on:
backend_1:
condition: service_healthy
networks:
- server1
- traefik-proxy
- common
Find the networks section at the top of the docker-compose.yml file and add traefik-proxy
networks:
server1:
server2:
server3:
common:
traefik-proxy:
external: true
Hell Let Loose (HLL) Community RCON (CRCON) Wiki - Back to Home
Maps
Records
Settings
Others
Stats
(TODO)
- Admin panel (needs update)
- Migrate CRCON to another VPS
- Replace the game server managed in CRCON
- Adding a game server to manage in CRCON
- Overview Project Structure
- Development environment
- Building your own Docker images
- CRCON API
- Streaming Logs
- Remotely connect to the PostgreSQL database
- Miscellaneous (needs update)
- HLL RCON Commands (needs update)
- Please look at this first
- Ask for help