From 384a3cdbeb0ab0928aee020d98b4bb4f04427c5d Mon Sep 17 00:00:00 2001 From: GilbN Date: Sat, 8 Dec 2018 01:13:29 +0100 Subject: [PATCH] added guacorg --- README.md | 62 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) diff --git a/README.md b/README.md index a14a867d..927fe61c 100644 --- a/README.md +++ b/README.md @@ -15,6 +15,68 @@ A collection of themes/skins for use in conjunction with [Organizr](https://gith [Archmonger/Blackberry-Flat](https://github.com/Archmonger/Blackberry-Flat) +# Guacamole Dark/Plex theme Theme + +Custom [Guacamole](https://guacamole.apache.org/) CSS to match the [Organizr](https://github.com/causefx/Organizr) theme. + +![](https://raw.githubusercontent.com/gilbN/theme.park/master/Screenshots/guacorg/guacorg.png) + +#### `guacorg.css` is a dark theme that matches Organizr. + +#### `guacplex.css` +If you want a regular Plex theme for your *arr setup, use the **`orgarr-plex.css`** instead. + +## Setup +
Expand + +![](https://raw.githubusercontent.com/gilbN/theme.park/master/Screenshots/guacorg/guacorg2.png) + +### Subfilter +As the Guacamole doesn't have support for custom CSS you can get around that by using [subfilter](http://nginx.org/en/docs/http/ngx_http_sub_module.html) in Nginx. + +Add this to your plex reverse proxy: +```nginx + proxy_set_header Accept-Encoding ""; + sub_filter + '' + ' + '; + sub_filter_once on; +``` +Here is a complete example: +```nginx +#MONITORR CONTAINER + +# REDIRECT HTTP TRAFFIC TO https://[domain.com] +server { + listen 80; + server_name guac.domain.com; + return 301 https://$server_name$request_uri; +} + +server { + listen 443 ssl http2; + server_name guac.domain.com; + + #SSL settings + include /config/nginx/ssl.conf + +location / { + proxy_pass http://192.168.1.2:8701; + include /config/nginx/proxy.conf; + proxy_set_header Accept-Encoding ""; + sub_filter + '' + ' + '; + sub_filter_once on; + } +} +``` +
+ +*** + # Plex Organizr Theme Custom [Plex](https://plex.tv) CSS to match the [Organizr](https://github.com/causefx/Organizr) theme.