diff --git a/website/nginx.conf b/website/nginx.conf index 782cd60..fcd2c37 100644 --- a/website/nginx.conf +++ b/website/nginx.conf @@ -1,16 +1,11 @@ -http { - include mime.types; +server { + listen 80; + server_name localhost; - server { - listen 80; - root /usr/share/nginx/html; + root /usr/share/nginx/html; + index index.html; - index index.html; - - location / { - try_files $uri $uri/ /index.html; - } + location / { + try_files $uri $uri/ /index.html; } -} - -event {} \ No newline at end of file +} \ No newline at end of file