added guacorg
This commit is contained in:
parent
e241b6cfd6
commit
384a3cdbeb
62
README.md
62
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)
|
[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.
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
#### `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
|
||||||
|
<details><summary>Expand</summary>
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
### 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
|
||||||
|
'</head>'
|
||||||
|
'<link rel="stylesheet" type="text/css" href="https://gilbn.github.io/theme.park/CSS/themes/guacorg.css">
|
||||||
|
</head>';
|
||||||
|
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
|
||||||
|
'</head>'
|
||||||
|
'<link rel="stylesheet" type="text/css" href="https://gilbn.github.io/theme.park/CSS/themes/guacorg.css">
|
||||||
|
</head>';
|
||||||
|
sub_filter_once on;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
</details>
|
||||||
|
|
||||||
|
***
|
||||||
|
|
||||||
# Plex Organizr Theme
|
# Plex Organizr Theme
|
||||||
|
|
||||||
Custom [Plex](https://plex.tv) CSS to match the [Organizr](https://github.com/causefx/Organizr) theme.
|
Custom [Plex](https://plex.tv) CSS to match the [Organizr](https://github.com/causefx/Organizr) theme.
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user