opencand.ui/nginx.conf
José Henrique 427c9da08b
All checks were successful
Frontend Build and Deploy / build (push) Successful in 14s
fixing nginx 404 on refresh
2025-05-31 12:20:03 -03:00

31 lines
611 B
Nginx Configuration File
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

worker_processes 1;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
# If the file or folder doesnt exist, fall back to index.html
location / {
try_files $uri $uri/ /index.html;
}
# (Optional) Static asset caching
location ~* \.(?:css|js|svg|png|jpg|jpeg|gif|ico)$ {
expires 30d;
add_header Cache-Control "public, max-age=2592000";
}
}
}