add sample nginx config

This commit is contained in:
Nick Sweeting 2018-10-13 22:47:30 -04:00
parent 46ad4fd163
commit b1a47d775b
3 changed files with 64 additions and 0 deletions

View file

@ -0,0 +1,10 @@
server {
listen 80 default_server;
server_name _;
root /data/output/;
index index.html;
autoindex on;
try_files $uri $uri/ $uri.html =404;
}