Files
indie/frontend/nginx.conf
2026-07-06 23:13:47 +05:45

15 lines
217 B
Nginx Configuration File

server {
listen 80;
server_name localhost;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
location /api/ {
proxy_pass http://backend:8080;
}
}