Files
jardin/frontend/nginx.conf
2026-02-21 21:09:59 +01:00

19 lines
323 B
Nginx Configuration File

server {
listen 80;
root /usr/share/nginx/html;
index index.html;
location /api/ {
proxy_pass http://backend:8000;
proxy_set_header Host $host;
}
location /uploads/ {
proxy_pass http://backend:8000;
}
location / {
try_files $uri $uri/ /index.html;
}
}