# # nginx virtual host configuration # server { listen 80; listen [::]:80; # add a server document root # root /path/to/document/root; index current.json all.json error.json; # add a server host name # server_name example.com www.example.com; location / { try_files $uri $uri/ =404; } }