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