AAE-1690 run as non privileged user (#1358)

This commit is contained in:
Marcello Teodori 2020-03-09 09:42:52 +00:00 committed by GitHub
parent 00d236e186
commit 737fb8db57
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,3 +1,4 @@
pid /tmp/nginx.pid;
worker_processes 1;
events {
@ -5,6 +6,11 @@ events {
}
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;
server {
listen 8080;
server_name localhost;