JUPYTER 服務的 NGINX 配置

agentd發表於2019-01-19

jupyter 配置

配置檔案在 /home/{user}/.jupyter/jupyter_notebook_config.py

配置 jupyter 的路徑

c.NotebookApp.base_url = `/jupyter/`

nginx 配置

jupyter 使用了 websocket 協議,所以需要配置支援 websocket。

    location /jupyter/ {
        proxy_pass http://jupyter;
        proxy_set_header Host $host;
        proxy_set_header X-Real-Scheme $scheme;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

        # WebSocket support
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "upgrade";

        proxy_read_timeout 120s;
        proxy_next_upstream error;
    }

jupyter notebook 用到了 websocket, 所以需要配置

        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "upgrade";

JUPYTER 服務的 NGINX 配置 – Agentd

相關文章