File size: 344 Bytes
6992e29
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
http {
    server {
        listen 7860;
        server_name _;

        location / {
            root /app/public;
            index index.html;
        }

        location /jupyter/ {
            proxy_pass http://localhost:8888;
            proxy_set_header Host $host;
            proxy_set_header X-Real-IP $remote_addr;
        }
    }
}