nginx things

This commit is contained in:
Rafi Greenberg
2021-02-03 10:21:14 -08:00
parent 98bcab5b81
commit 1ddf9fe813
2 changed files with 7 additions and 10 deletions

View File

@@ -1,13 +1,9 @@
events { worker_connections 1024; }
server {
listen 80;
root /usr/share/nginx/html;
include /etc/nginx/mime.types;
http {
server {
listen 80;
root /usr/share/nginx/html;
include /etc/nginx/mime.types;
location / {
try_files $uri /index.html;
}
location / {
try_files $uri /index.html;
}
}