andreped's picture
Added nginx.conf
fe9fd6f
raw
history blame
222 Bytes
events {
worker_connections 1024;
}
http {
server {
listen 7860;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html;
}
}
}