Files
insurance-fe/nginx.conf
2025-08-26 16:18:04 +08:00

18 lines
276 B
Nginx Configuration File

server {
listen 80;
server_name insurance.hzwnrw.my;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri /index.html;
}
location /assets/ {
try_files $uri =404;
}
client_max_body_size 10M;
}