Intègre en un seul commit master les changements de develop : templates email de validation (#28), alignement schéma validations + patches SQL, montée Flutter 3.29 (CI/Docker), correctifs bootstrap web/nginx/API origin et gestion HTTP 201 sur validation dossier famille. Made-with: Cursor
15 lines
301 B
Nginx Configuration File
15 lines
301 B
Nginx Configuration File
server {
|
|
listen 80;
|
|
# Host réel fourni par Traefik (app.ptits-pas.fr, etc.)
|
|
server_name _;
|
|
|
|
location / {
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
|
|
# Gestion des erreurs
|
|
error_page 404 /index.html;
|
|
}
|