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,8 +1,14 @@
server {
worker_processes 1;
events { worker_connections 1024; }
http {
server {
listen 80;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html =404;
}
}
}
}