ba923083e9
- Added py-kms windows activation server
146 lines
4.6 KiB
Plaintext
146 lines
4.6 KiB
Plaintext
send_timeout 5m;
|
|
proxy_read_timeout 240;
|
|
proxy_send_timeout 240;
|
|
proxy_connect_timeout 240;
|
|
client_header_timeout 240;
|
|
client_body_timeout 240;
|
|
|
|
|
|
location / {
|
|
root /usr/local/www/Organizr;
|
|
index index.php index.html index.htm index.nginx-debian.html;
|
|
location ~ /auth-(.*) {
|
|
internal;
|
|
rewrite ^/auth-(.*) /api/?v1/auth&group=$1;
|
|
}
|
|
error_page 400 401 402 403 404 405 408 500 502 503 504 $scheme://$server_name/?error=$status;
|
|
location / {try_files $uri $uri/ =404;}
|
|
include custom/phpblock.conf; #PHP Block
|
|
}
|
|
|
|
|
|
location /transmission/ {
|
|
auth_request /auth-0;
|
|
add_header X-Frame-Options "SAMEORIGIN";
|
|
proxy_pass http://192.168.31.22:9091;
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
}
|
|
|
|
location /sonarr/ {
|
|
auth_request /auth-0;
|
|
add_header X-Frame-Options "SAMEORIGIN";
|
|
proxy_pass http://192.168.31.23:8989;
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
}
|
|
|
|
location /radarr/ {
|
|
auth_request /auth-0;
|
|
add_header X-Frame-Options "SAMEORIGIN";
|
|
proxy_pass http://192.168.31.24:7878;
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
}
|
|
|
|
location /lidarr/ {
|
|
auth_request /auth-0;
|
|
add_header X-Frame-Options "SAMEORIGIN";
|
|
proxy_pass http://192.168.31.25:8686;
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
}
|
|
|
|
location /jackett/ {
|
|
auth_request /auth-0;
|
|
add_header X-Frame-Options "SAMEORIGIN";
|
|
proxy_pass http://192.168.31.21:9117;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection keep-alive;
|
|
proxy_cache_bypass $http_upgrade;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
|
proxy_set_header X-Forwarded-Host $http_host;
|
|
}
|
|
|
|
location /plex/ {
|
|
auth_request /auth-4;
|
|
add_header X-Frame-Options "SAMEORIGIN";
|
|
proxy_pass https://192.168.30.27:32400/;
|
|
client_max_body_size 10m;
|
|
client_body_buffer_size 128k;
|
|
proxy_bind $server_addr;
|
|
proxy_buffers 32 4k;
|
|
#Timeout if the real server is dead
|
|
proxy_next_upstream error timeout invalid_header http_500 http_502 http_503;
|
|
# Advanced Proxy Config
|
|
send_timeout 5m;
|
|
proxy_read_timeout 240;
|
|
proxy_send_timeout 240;
|
|
proxy_connect_timeout 240;
|
|
proxy_hide_header X-Frame-Options;
|
|
# Basic Proxy Config
|
|
proxy_set_header Host $host:$server_port;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
proxy_set_header X-Forwarded-Proto https;
|
|
proxy_redirect http:// $scheme://;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Connection "";
|
|
proxy_no_cache $cookie_session;
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection "upgrade";
|
|
}
|
|
if ($http_referer ~* /plex/) {
|
|
rewrite ^/web/(.*) /plex/web/$1? redirect;
|
|
}
|
|
|
|
location /tautulli/ {
|
|
auth_request /auth-4;
|
|
add_header X-Frame-Options "SAMEORIGIN";
|
|
proxy_pass http://192.168.31.26:8181;
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Forwarded-Host $server_name;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
proxy_read_timeout 90;
|
|
proxy_set_header X-Forwarded-Proto https;
|
|
proxy_set_header X-Forwarded-Ssl on;
|
|
#proxy_redirect ~^(http(?:s)?://)([^:/]+)(?::\d+)?(/.*)?$ $1$2:$server_port$3;
|
|
proxy_redirect off;
|
|
}
|
|
|
|
location /ombi {
|
|
auth_request /auth-4;
|
|
add_header X-Frame-Options "SAMEORIGIN";
|
|
proxy_pass https://127.0.0.1:5000/ombi/;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection keep-alive;
|
|
proxy_set_header Host $host;
|
|
proxy_cache_bypass $http_upgrade;
|
|
}
|
|
|
|
location /grafana {
|
|
auth_request /auth-0;
|
|
add_header X-Frame-Options "SAMEORIGIN";
|
|
proxy_pass https://192.168.30.34/;
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
}
|
|
|
|
location /bitwarden {
|
|
auth_request /auth-0;
|
|
add_header X-Frame-Options "SAMEORIGIN";
|
|
proxy_pass https://bitwarden.schouten-lebbing.nl/;
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
}
|