nginx / nginx.conf
wIK5Ez2o's picture
Update nginx.conf
19d625e verified
raw
history blame contribute delete
233 Bytes
types {
application/javascript js mjs;
}
server {
listen 7860 default_server;
server_name _;
root /usr/share/nginx/html;
location / {
index index.html index.htm;
try_files $uri $uri/ =404;
}
}