andreped's picture
Remove user from nginx config; add pid
897a2bc
raw
history blame contribute delete
243 Bytes
pid /tmp/nginx.pid;
events {
worker_connections 1024;
}
http {
server {
listen 7860;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html;
}
}
}