ajout de fichiers de configurqtion divers

This commit is contained in:
toine 2025-10-04 15:53:10 +02:00
parent fec74d9f83
commit 292c791a27
4 changed files with 64 additions and 0 deletions

11
nginx/conf.d/backend.conf Normal file
View file

@ -0,0 +1,11 @@
server {
listen 80;
server_name api.violet-anthony.eu;
location / {
proxy_pass http://monsite-perso-backend:8887;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
}