location ~ ^/(data|html|css|js)/ {
    try_files $uri $uri/ =404;
}

location / {
    try_files $uri $uri/ /index.html;
}