File size: 386 Bytes
404c8c2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# nginx.conf
pid /var/run/nginx.pid; 

worker_processes  auto;

events {
  worker_connections  1024;
}

http {
  include       /etc/nginx/mime.types;
  default_type  application/octet-stream;

  server {
    listen       7860;
    server_name  localhost;
    root         /usr/share/nginx/html;
    index        index.html;

    location / {
      try_files $uri $uri/ =404;
    }
  }
}