Skip to content

NGINX Reverse Proxy for Web UI

Ming Tang edited this page Aug 11, 2017 · 22 revisions

If you're using NGINX as a reverse proxy for Web UI, as of version 3.3.15, assuming your reverse proxy is local, your location / should look similar to the following:

    location / { 
...
        proxy_pass          http://127.0.0.1:<port>/;
...
        proxy_set_header    X-Forwarded-Host        127.0.0.1:<port>;
...
        proxy_hide_header   Referer;
        proxy_hide_header   Origin;
        proxy_set_header    Referer                 ''; 
        proxy_set_header    Origin                  ''; 
...
    }

General

Troubleshooting

External programs

Search plugins

Themes

Translation


WebUI

WebUI API

State Version
Current qBittorrent >= 5.0
Previous qBittorrent v4.1.0 - v4.6.x
Previous qBittorrent v3.2.0 - v4.0.x
Obsolete qBittorrent < v3.2.0

Authentication

WebAPI clients

Alternate WebUI

Reverse proxy setup for WebUI access

WebUI HTTPS configuration


Linux


Development

Compilation

Common information for CMake

*BSD, Linux

macOS

Windows

Obsolete compilation guides

Clone this wiki locally