feat: serve frontend

This commit is contained in:
Karishma Shukla
2025-04-26 15:56:40 +05:30
committed by GitHub
parent 2dbec99c6f
commit 84bad0c89d

View File

@@ -2,8 +2,11 @@ server {
listen 80;
server_name _;
root /var/www/maxun;
index index.html;
# Serve the frontend
location / {
root /usr/share/nginx/html;
try_files $uri $uri/ /index.html;
}