1
0
mirror of https://github.com/gilbN/theme.park.git synced 2024-11-19 17:42:32 +01:00

Updated Dozzle (markdown)

GilbN 2021-04-25 17:56:09 +02:00
parent f112c0f377
commit e4f72e780d

@ -19,7 +19,7 @@ organizr-dark.css
## 🛠️ Installation
### ⚠️ CSP NOTE:
### [[Setup|Setup]]
As dozzle will block the `Plex` theme with its content security policy you need to change or remove the CSP header.
As dozzle 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:
@ -35,17 +35,17 @@ proxy_hide_header "content-security-policy";
...
location / {
proxy_pass http://<dozzle.container.ip.address>:8080;
proxy_pass http://<dozzle.container.ip.address>:8080;
set $app dozzle;
include /config/nginx/theme-park.conf;
proxy_hide_header "x-webkit-csp";
proxy_hide_header "content-security-policy";
proxy_hide_header "x-webkit-csp";
proxy_hide_header "content-security-policy";
}
location /api {
proxy_pass http://<dozzle.container.ip.address>:8080;
proxy_buffering off;
proxy_cache off;
proxy_pass http://<dozzle.container.ip.address>:8080;
proxy_buffering off;
proxy_cache off;
}
}
```