在已有的会话中打开:
ctrl-b :
setw synchronize-panes on
关闭:
ctrl-b :
setw synchronize-panes off
在已有的会话中打开:
ctrl-b :
setw synchronize-panes on
关闭:
ctrl-b :
setw synchronize-panes off
使用qbittorrnet-nox使用帮助查看了一下,没有看到有相关的监听地址选项,只有端口的设置,登入到qbittorrent-nox 的web ui中可以修改监听的ip地址,默认为*
到tools-options-Web UI-Web User Interface (Remote control)中将IP address:修改为127.0.0.1,重启后即无法从外部地址访问qbittorrent-nox。
使用systemd服务重启qbittorrent-nox,具体使用方法参阅Dedian 10 使用qbittorrent-nox web
sudo systemctl start qbittorrent-nox
location /qbit/ {
proxy_pass http://127.0.0.1:8080/;
proxy_http_version 1.1;
proxy_set_header X-Forwarded-Host $http_host;
http2_push_preload on; # Enable http2 push
}
# htpasswd -c /etc/nginx/qbit.passwd qbit
location /qbit/ {
auth_basic "Welcome Qbittorrent";
auth_basic_user_file /etc/nginx/qbit.passwd;
proxy_pass http://127.0.0.1:8080/;
proxy_http_version 1.1;
proxy_set_header X-Forwarded-Host $http_host;
http2_push_preload on; # Enable http2 push
}
#systemctl restart qbittorrent-nox
到此即可使用nginx访问qbittorrnet-nox的web ui了,http://yourdomain/qbit
近期评论