/ installation / default.conf
default.conf
 1  server {
 2      listen 8080;
 3      server_name BOP;
 4  
 5      location / {
 6          root /usr/share/nginx/html;
 7          index index.html;
 8      }
 9  }
10  
11  server {
12      listen 8081;
13      server_name onion;
14  
15      location / {
16          root /usr/share/nginx/html;
17          index onion-index.html;
18      }
19  }