added note about qbittorrent

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

@ -11,6 +11,8 @@
</li> </li>
<li><a href="#stylus-method">Stylus Method</a></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="#blackberry-theme-installer-method">Blackberry Theme Installer</a></li>
<li><a href="#qbittorrent">Qbittorrent</a></li>
</ul> </ul>
*** ***
@ -167,3 +169,14 @@ $.getScript('https://archmonger.github.io/Blackberry-Themes/Extras/theme_install
themeInstaller("<TAB_NAME>","https://gilbn.github.io/theme.park/CSS/themes/<APP_NAME>/<THEME_NAME>.css"); 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";
```