From 5e0161cb7cceed9fa159c2f8ddfe078f967064e7 Mon Sep 17 00:00:00 2001 From: Niggl Date: Wed, 10 Jun 2020 13:12:45 +0200 Subject: [PATCH] Added Fix for nginx --- nginx.conf | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/nginx.conf b/nginx.conf index 519e56f..54d595a 100644 --- a/nginx.conf +++ b/nginx.conf @@ -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; } -} + } +} \ No newline at end of file