nginDocker / nginx.conf
Clone04's picture
Update nginx.conf
eb4616f verified
raw
history blame
194 Bytes
events {}
http {
server {
listen 7860;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html;
}
}
}