diff --git a/nginx.conf b/nginx.conf index 42be402..02e7eab 100644 --- a/nginx.conf +++ b/nginx.conf @@ -1,16 +1,16 @@ -http { - server { - listen 80; - server_name localhost; - location / { - root /usr/share/nginx/html; - index index.html; - try_files $uri $uri/ /index.html; - } +server { + listen 80; + server_name localhost; + + location / { + root /usr/share/nginx/html; + index index.html; + try_files $uri $uri/ /index.html; } } + events { worker_connections 1024; } \ No newline at end of file