andreped's picture
Add user to nginx conf
2140160
raw
history blame
233 Bytes
user user;
events {
worker_connections 1024;
}
http {
server {
listen 7860;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html;
}
}
}