nginx sur le port 80 : routage par defaut des reverse proxies (Coolify/Traefik)

This commit is contained in:
Aurealibe
2026-07-10 04:11:12 +01:00
parent 25cc54c2e6
commit dc7f1b3a7c
4 changed files with 9 additions and 9 deletions
+5 -5
View File
@@ -1,11 +1,11 @@
# Production compose (what Coolify deploys): one service, the static site
# built by the multi-stage Dockerfile and served by hardened nginx on 8080.
# No host `ports:` mapping: the platform's reverse proxy (Traefik on
# Coolify) routes straight to the exposed container port. For local
# development use docker-compose.dev.yml instead.
# built by the multi-stage Dockerfile and served by hardened nginx on 80
# (the port reverse proxies expect by default). No host `ports:` mapping:
# the platform's proxy (Traefik on Coolify) routes straight to the exposed
# container port. For local development use docker-compose.dev.yml instead.
services:
web:
build: .
restart: unless-stopped
expose:
- '8080'
- '80'