fixing nginx 404 on refresh
All checks were successful
Frontend Build and Deploy / build (push) Successful in 14s

This commit is contained in:
2025-05-31 12:20:03 -03:00
parent 1ced8d8700
commit 427c9da08b
4 changed files with 104 additions and 53 deletions

30
nginx.conf Normal file
View File

@@ -0,0 +1,30 @@
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";
}
}
}