Added Fix for nginx

This commit is contained in:
Nicolai Ort 2020-06-10 13:12:45 +02:00
parent 8da9d76acf
commit 5e0161cb7c
1 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,8 @@
worker_processes 1;
events { worker_connections 1024; }
http {
server {
listen 80;
location / {
@ -6,3 +11,4 @@ server {
try_files $uri $uri/ /index.html =404;
}
}
}