美文网首页
Jupyter的Nginx反向代理配置

Jupyter的Nginx反向代理配置

作者: 臻甄 | 来源:发表于2021-12-31 16:25 被阅读0次

nginx使用反向代理时,通过master节点IP访问node节点的jupyter,需要额外配置

jupyter 使用了 websocket 协议,所以需要配置支持 websocket。

# server前先加一段配置,websocket client请求头自带http_upgrade,映射成connection_upgrade
map $http_upgrade $connection_upgrade {
    default upgrade;
    ''      close;
}
server {
    listen    8030;
    location / {
        proxy_pass http://10.88.222.52:8111;
        # 启用支持websocket连接,nginx的功能
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection $connection_upgrade;
        proxy_set_header Host $http_host;
        proxy_http_version 1.1;
    }
}

相关文章

  • Jupyter的Nginx反向代理配置

    nginx使用反向代理时,通过master节点IP访问node节点的jupyter,需要额外配置 jupyter ...

  • Ubuntu 下 Nginx 反向代理 Jupyter Lab,

    记录一下使用 Nginx 配置 Jupyter Lab 的反向代理与开启 https 小绿锁过程。Jupyter ...

  • Nginx应用场景

    反向代理,负载均衡,动静分离 1.反向代理 修改nginx配置,并重新加载 重新加载nginx配置./nginx ...

  • 01-nginx前端方向代理

    前端反向代理 1.下载nginx 2. 配置nginx.conf反向代理

  • nginx

    nginx的配置、虚拟主机、负载均衡和反向代理一nginx的配置、虚拟主机、负载均衡和反向代理二nginx的配置、...

  • nginx反向代理

    什么是反向代理 如何实现反向代理 准备工作以及安装nginx 配置nginx nginx的初始配置文件去掉注释后的...

  • nginx 配置

    nginx 多个 root页面配置 反向代理

  • 第二课 nginx+tomcat集群

    正向代理,反向代理 配置Nginx 配置文件目录:/usr/local/nginx-1.6.1/conf/ngin...

  • nginx+tomcat集群

    正向代理,反向代理 配置Nginx 配置文件目录:/usr/local/nginx-1.6.1/conf/ngin...

  • nginx+tomcat集群

    正向代理,反向代理 配置Nginx 配置文件目录:/usr/local/nginx-1.6.1/conf/ngin...

网友评论

      本文标题:Jupyter的Nginx反向代理配置

      本文链接:https://www.haomeiwen.com/subject/chmgqrtx.html