Files
ServiceManager/frontend/nginx.conf
2025-11-25 21:03:20 +01:00

14 lines
208 B
Nginx Configuration File

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