walava-web/nginx.conf
rainofdestiny 4b19b6666a
Some checks failed
Deploy / build-and-push (push) Failing after 1m33s
Deploy / deploy (push) Has been cancelled
feat: initial landing page placeholder
2026-03-26 22:13:35 +07:00

9 lines
164 B
Nginx Configuration File

server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
}