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

浏览 1k

文章标签

参考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
粉丝
相关问答

公开课里介绍了3个简易的轻量级工具:

1、命令行工具ngxtop, https://github.com/lebinh/ngxtop

2、web页面goaccess, https://goaccess.io/get-started

3、web页面visitors,http://www.hping.org/visitors/

如果你有特别灵活的定制需求,或者集群规模巨大,或者已经搭建好了ELK,那还是推荐用ELK


点赞 0
浏览 944

源码可以删除

点赞 0
浏览 867

我用过,应该没有问题。你编译的时候把echo模块添加进去了吗?

点赞 0
浏览 834