Update Error Nginx Refresh page

This commit is contained in:
ahmadafriadi 2025-06-30 13:06:28 +07:00
parent 44b3fab0ea
commit ba28cf49a0

11
nginx/default.conf Normal file
View File

@ -0,0 +1,11 @@
server {
listen 80;
server_name localhost;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri /index.html;
}
}