file typo

This commit is contained in:
Nicholas Orlowsky 2021-06-30 15:55:40 -04:00
parent e993f5293c
commit e482a678bf

8
nginx/nginx.conf 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;
}
}