Last active
November 11, 2015 21:19
-
-
Save jgwerner/3b44a80f9c544b9f5b51 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
worker_processes 1; | |
events { | |
worker_connections 1024; | |
} | |
http { | |
include /etc/nginx/mime.types; | |
default_type application/octet-stream; | |
sendfile on; | |
server { | |
listen 80; | |
client_max_body_size 50M; | |
server_name go.3blades.io; | |
resolver_timeout 5s; | |
# Expose logs to "docker logs". | |
# See https://github.com/nginxinc/docker-nginx/blob/master/Dockerfile#L12-L14 | |
access_log /var/log/nginx/access.log; | |
error_log /var/log/nginx/error.log; | |
location ~ /(user-[a-zA-Z0-9]*)/static(.*) { | |
alias /usr/local/lib/python3.4/dist-packages/notebook/static/$2; | |
} | |
location / { | |
proxy_pass http://<host ip>:8888; | |
proxy_set_header X-Real-IP $remote_addr; | |
proxy_set_header Host $host; | |
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; | |
proxy_set_header X-NginX-Proxy true; | |
} | |
location ~* /(user/[^/]*)/(api/kernels/[^/]+/channels|terminals/websocket)/? { | |
proxy_pass http://<host ip>:8888; | |
proxy_set_header X-Real-IP $remote_addr; | |
proxy_set_header Host $host; | |
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; | |
proxy_set_header X-NginX-Proxy true; | |
# WebSocket support | |
proxy_http_version 1.1; | |
proxy_set_header Upgrade $http_upgrade; | |
proxy_set_header Connection "upgrade"; | |
proxy_read_timeout 86400; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment