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

@@ -7,7 +7,7 @@ Application de gestion du SI Malio. Monorepo Symfony 8 (API Platform 4) + Nuxt 4
- **Backend** : PHP 8.4, Symfony 8.0, API Platform 4, Doctrine ORM, PostgreSQL 16 - **Backend** : PHP 8.4, Symfony 8.0, API Platform 4, Doctrine ORM, PostgreSQL 16
- **Frontend** : Nuxt 4 (SSR off / SPA), Vue 3, Pinia, Tailwind CSS, @malio/layer-ui, nuxt-toast, @nuxtjs/i18n, @nuxt/icon - **Frontend** : Nuxt 4 (SSR off / SPA), Vue 3, Pinia, Tailwind CSS, @malio/layer-ui, nuxt-toast, @nuxtjs/i18n, @nuxt/icon
- **Auth** : JWT HTTP-only cookie (lexik/jwt-authentication-bundle), login à `/login_check`, cookie `BEARER` - **Auth** : JWT HTTP-only cookie (lexik/jwt-authentication-bundle), login à `/login_check`, cookie `BEARER`
- **Docker** : PHP-FPM + Node 24, Nginx (port 8083), PostgreSQL (port 5436) - **Docker** : PHP-FPM + Node 24, Nginx (port 8084), PostgreSQL (port 5436)
## Structure ## Structure

View File

@@ -12,7 +12,7 @@ make fixtures
## Accès ## Accès
- Frontend : http://localhost:8083 - Frontend : http://localhost:8084
- API : http://localhost:8083/api - API : http://localhost:8084/api
- Dev Nuxt (hot reload) : http://localhost:3003 - Dev Nuxt (hot reload) : http://localhost:3003
- Login : `admin` / `admin` - Login : `admin` / `admin`

View File

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

View File

@@ -38,7 +38,7 @@ services:
depends_on: depends_on:
- php - php
ports: ports:
- "8083:80" - "8084:80"
volumes: volumes:
- ./:/var/www/html:ro - ./:/var/www/html:ro
- ./infra/dev/nginx.conf:/etc/nginx/conf.d/central.conf:ro - ./infra/dev/nginx.conf:/etc/nginx/conf.d/central.conf:ro

View File

@@ -4,7 +4,7 @@ services:
container_name: central-app container_name: central-app
env_file: .env env_file: .env
ports: ports:
- "8083:80" - "8084:80"
volumes: volumes:
- ./config/jwt:/var/www/html/config/jwt:ro - ./config/jwt:/var/www/html/config/jwt:ro
- ./uploads:/var/www/html/var/uploads - ./uploads:/var/www/html/var/uploads

View File

@@ -4,7 +4,7 @@ server {
server_name central.malio-dev.fr; server_name central.malio-dev.fr;
location / { 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 Host $host;
proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;