qbittorrent-nox设置
-
修改qbittorrent-nox web ui监听地址
使用qbittorrnet-nox使用帮助查看了一下,没有看到有相关的监听地址选项,只有端口的设置,登入到qbittorrent-nox 的web ui中可以修改监听的ip地址,默认为*
到tools-options-Web UI-Web User Interface (Remote control)中将IP address:修改为127.0.0.1,重启后即无法从外部地址访问qbittorrent-nox。
-
重启qbittorrent-nox
使用systemd服务重启qbittorrent-nox,具体使用方法参阅Dedian 10 使用qbittorrent-nox web
sudo systemctl start qbittorrent-nox
nginx反向代理
-
添加反向代理配置
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
}
-
启用nginx_http_auth_basic认证
- 使用htpasswd创建认证文件
# htpasswd -c /etc/nginx/qbit.passwd qbit
- 在nginx反向代理qbittorrent-nox块中使用创建的认证信息
- 使用htpasswd创建认证文件
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
}
-
重启nginx
#systemctl restart qbittorrent-nox
到此即可使用nginx访问qbittorrnet-nox的web ui了,http://yourdomain/qbit
近期评论