1
0
mirror of https://github.com/gilbN/theme.park.git synced 2024-10-02 13:37:21 +02:00
5 Dozzle
GilbN edited this page 2021-04-25 17:57:20 +02:00

Dozzle

Custom Dozzle CSS.

Organizr Dark Theme

https://gilbn.github.io/theme.park/CSS/themes/dozzle/XXX.css
aquamarine.css
hotline.css
plex.css
dark.css
space-gray.css
organizr-dark.css

🛠️ Installation

⚠️ CSP NOTE:

Setup

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:

proxy_hide_header "x-webkit-csp";
proxy_hide_header "content-security-policy";

Nginx variable example:

      server {
        ...

        location / {
            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";
        }

        location /api {
            proxy_pass http://<dozzle.container.ip.address>:8080;
            proxy_buffering off;
            proxy_cache off;
        }
    }

Screenshots

Dark Theme

Space Gray Theme

Plex Theme

Organizr Dark Theme

Hotline Theme

Aquamarine Theme