diff --git a/nginx/nginx.conf b/nginx/nginx.conf index 75b4b93..3d9e1ab 100644 --- a/nginx/nginx.conf +++ b/nginx/nginx.conf @@ -1,8 +1,19 @@ server { - listen 8080;server_name localhost; - location / { - root /usr/share/nginx/html; - index index.html; - try_files $uri $uri/ /index.html; + pid /tmp/nginx.pid; + + http { + client_body_temp_path /tmp/client_temp; + proxy_temp_path /tmp/proxy_temp_path; + fastcgi_temp_path /tmp/fastcgi_temp; + uwsgi_temp_path /tmp/uwsgi_temp; + scgi_temp_path /tmp/scgi_temp; + + listen 8080;server_name localhost; + location / { + root /usr/share/nginx/html; + index index.html; + try_files $uri $uri/ /index.html; + } + } } \ No newline at end of file