excd / nginx.conf.template
nich2456's picture
Update nginx.conf.template
0776303 verified
raw
history blame contribute delete
156 Bytes
server {
listen 0.0.0.0:8089;
location / {
root /usr/share/nginx/html;
index index.html;
try_files $uri $uri/ =404;
}
}