server {
listen 80;
server_name 103.127.99.53;
root /home/dakarash.co.id/public_html/maintenance;
index index.html;
error_page 503 /index.html;
add_header Cache-Control "no-store";
add_header Retry-After "3600";
location / { return 503; }
location = /index.html { try_files $uri =404; }
location /asset/ { try_files $uri =404; }
location /assets/ { try_files $uri =404; }
}