Created
April 13, 2016 01:28
-
-
Save zonca/08c413a37401bdc9d2a7f65a7af44462 to your computer and use it in GitHub Desktop.
Jupyterhub NGINX reverse proxy with SSL, replace HOSTNAME with a hostname or _
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
ser www-data; | |
worker_processes 4; | |
pid /run/nginx.pid; | |
events { | |
worker_connections 1024; | |
} | |
http { | |
include /etc/nginx/mime.types; | |
default_type application/octet-stream; | |
server { | |
listen 80; | |
server_name HOSTNAME; | |
rewrite ^ https://$host$request_uri? permanent; | |
} | |
server { | |
listen 443; | |
client_max_body_size 50M; | |
server_name HOSTNAME; | |
ssl on; | |
ssl_certificate /etc/nginx/ssl/nginx.crt; | |
ssl_certificate_key /etc/nginx/ssl/nginx.key; | |
ssl_ciphers "AES128+EECDH:AES128+EDH"; | |
ssl_protocols TLSv1 TLSv1.1 TLSv1.2; | |
ssl_prefer_server_ciphers on; | |
ssl_session_cache shared:SSL:10m; | |
add_header Strict-Transport-Security "max-age=63072000; includeSubDomains"; | |
add_header X-Content-Type-Options nosniff; | |
ssl_stapling on; # Requires nginx >= 1.3.7 | |
ssl_stapling_verify on; # Requires nginx => 1.3.7 | |
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://localhost:8000; | |
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://localhost:8000; | |
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
Thanks for sharing!