add nginx

This commit is contained in:
Nicholas Orlowsky 2021-06-30 15:42:16 -04:00
parent f3ff12f5ae
commit e993f5293c

8
nginx/nginx.config Normal file
View file

@ -0,0 +1,8 @@
server {
listen 80;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html =404;
}
}