art-scrapper/nginx/nginx.conf
2024-12-13 18:38:00 +01:00

15 lines
319 B
Nginx Configuration File

server {
listen 80;
# Serve static files directly
location / {
root /path/to/frontend/dist;
try_files $uri $uri/ /index.html;
}
location /api {
proxy_pass http://backend:3000;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
}