chore(central) : passe le port http a 8084

This commit is contained in:
2026-04-03 11:37:04 +02:00
parent 4234efdb50
commit 2844fea802
6 changed files with 8 additions and 8 deletions

View File

@@ -81,7 +81,7 @@ services:
container_name: central-app
env_file: .env
ports:
- "8083:80"
- "8084:80"
volumes:
- ./config/jwt:/var/www/html/config/jwt:ro
- ./uploads:/var/www/html/var/uploads
@@ -171,7 +171,7 @@ server {
server_name central.malio-dev.fr;
location / {
proxy_pass http://127.0.0.1:8083;
proxy_pass http://127.0.0.1:8084;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;