added note about qbittorrent

GilbN 2020-01-15 22:41:19 +01:00
parent 248c2e5eb1
commit e52d8198d6

@ -11,6 +11,8 @@
</li>
<li><a href="#stylus-method">Stylus Method</a></li>
<li><a href="#blackberry-theme-installer-method">Blackberry Theme Installer</a></li>
<li><a href="#qbittorrent">Qbittorrent</a></li>
</ul>
***
@ -166,4 +168,15 @@ $.getScript('https://archmonger.github.io/Blackberry-Themes/Extras/theme_install
// You can also use this for multiple themes at once by simply calling themeInstaller again!
themeInstaller("<TAB_NAME>","https://gilbn.github.io/theme.park/CSS/themes/<APP_NAME>/<THEME_NAME>.css");
});
```
```
# Qbittorrent
As Qbittorrent will block the theme with its content security policy you need to change or remove the CSP header.
Add this in your reverse proxy to remove the headers:
```nginx
proxy_hide_header "x-webkit-csp";
proxy_hide_header "content-security-policy";
```