fusero-app-boilerplate/frontend/nginx.conf

20 lines
359 B
Nginx Configuration File

server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
location /favicon/ {
alias /usr/share/nginx/html/dist/favicon/;
access_log off;
expires max;
}
# DO NOT proxy /api here — let the global Nginx handle it
}