mirror of
https://github.com/Adam-Ant/media-server-in-a-box
synced 2024-11-14 08:26:21 +00:00
Rework nginx to use directories rather than subdomains
This commit is contained in:
parent
50b70a3439
commit
69b693aaaa
52
nginx.cfg
52
nginx.cfg
@ -1,9 +1,9 @@
|
||||
resolver 127.0.0.1;
|
||||
server {
|
||||
listen 80;
|
||||
server_name plex.genie;
|
||||
listen 80 default_server;
|
||||
server_name "";
|
||||
|
||||
location / {
|
||||
location /plex {
|
||||
set $test "";
|
||||
|
||||
# If a request to / comes in, 301 redirect to the main plex page,
|
||||
@ -35,60 +35,26 @@ server {
|
||||
proxy_set_header Connection "upgrade";
|
||||
proxy_read_timeout 36000s; ## Timeout after 10 hours
|
||||
}
|
||||
}
|
||||
server {
|
||||
listen 80;
|
||||
server_name deluge.genie;
|
||||
|
||||
location / {
|
||||
location /deluge {
|
||||
proxy_pass http://deluge:8112;
|
||||
proxy_set_header X-Deluge-Base "/deluge";
|
||||
}
|
||||
}
|
||||
server {
|
||||
listen 80;
|
||||
server_name sickrage.genie;
|
||||
|
||||
location / {
|
||||
location /sickrage {
|
||||
proxy_pass http://sickrage:8081;
|
||||
}
|
||||
}
|
||||
server {
|
||||
listen 80;
|
||||
server_name nzbget.genie;
|
||||
|
||||
location / {
|
||||
location /nzbget {
|
||||
proxy_pass http://nzbget:6791;
|
||||
}
|
||||
}
|
||||
server {
|
||||
listen 80;
|
||||
server_name plexpy.genie;
|
||||
|
||||
location / {
|
||||
location /plexpy {
|
||||
proxy_pass http://plexpy:8181;
|
||||
}
|
||||
}
|
||||
server {
|
||||
listen 80;
|
||||
server_name couchpotato.genie;
|
||||
|
||||
location / {
|
||||
location /couchpotato {
|
||||
proxy_pass http://couchpotato:5050;
|
||||
}
|
||||
}
|
||||
server {
|
||||
listen 80;
|
||||
server_name headphones.genie;
|
||||
|
||||
location / {
|
||||
proxy_pass http://headphones:8181;
|
||||
}
|
||||
}
|
||||
server {
|
||||
listen 80;
|
||||
server_name radarr.genie;
|
||||
|
||||
location / {
|
||||
proxy_pass http://radarr:7878;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user