回答
收藏
分享
举报
Nginx在子目录反向代理jupyter-lab的配置方法?
提问于2021-09-05 08:43

浏览 3.9k

文章标签

参考gotify的subpath配置

尝试Nginx在子目录反向代理jupyter-lab,失败显示 301 Moved Permanently

请问修改配置文件的哪里呢

我的配置是:

upstream jupyter {
server 127.0.0.1:9999;
}

server {
listen 80;
server_name _;

location /jupyter/ {
proxy_pass http://jupyter/;
rewrite ^ $1 permanent;
proxy_http_version 1.1;

# Ensuring it can use websockets
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto http;
proxy_redirect http:// $scheme://;

# The proxy must preserve the host because gotify verifies the host with the origin
# for WebSocket connections
proxy_set_header Host $http_host;

proxy_connect_timeout 7m;
proxy_send_timeout 7m;
proxy_read_timeout 7m;
}

已修改于2023-03-15 02:13



写下您的回答
发表回答
全部回答(1)

按点赞数排序

按时间排序

感觉应该是rewrite ^ $1 permanent;这个是301永久重定向,发生在rewrite阶段,先于content阶段的proxy_pass。

赞同

0

回复举报

回答于2021-09-06 12:27



回复罗剑锋
回复
提问者
这家伙很懒还未留下介绍~
0
文章
1
问答
0
粉丝
相关问答

504是上游响应超时造成的,即与10.168.72.2  :5601建立连接成功,但无法在60秒内获得响应。

点赞 0
浏览 3.6k

用rewrite指令应该比较容易吧,把正则表达式规则写好,然后301或者302跳转,可以参考nginx.org上的文档。

点赞 0
浏览 3.2k