我想使用nginx
将地址重定向到运行中的本地端口jupyter
。如果我做location / {}
可以正常工作,但是如果我尝试location /nb {}
或location ^~/nb {}
并尝试通过domain.com/nb访问jupyter
抱怨我正在尝试的网页查看不存在。如何从子页面代理到jupyter,以便它能正常工作?
这是整个配置:
server {
listen 80;
server_name domain.com;
location ^~/nb {
proxy_pass http://localhost:8888;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
}
}