jellyfin socket nginx
This commit is contained in:
parent
e6f4152767
commit
3ca99ab655
|
@ -203,13 +203,28 @@
|
||||||
"jellyfin.mccarty.io" = {
|
"jellyfin.mccarty.io" = {
|
||||||
forceSSL = true;
|
forceSSL = true;
|
||||||
useACMEHost = "mccarty.io";
|
useACMEHost = "mccarty.io";
|
||||||
locations."/" = {
|
locations = {
|
||||||
|
"/socket" = {
|
||||||
|
proxyPass = "http://100.104.25.128:8096";
|
||||||
|
extraConfig = ''
|
||||||
|
proxy_set_header Upgrade $http_upgrade;
|
||||||
|
proxy_set_header Connection "upgrade";
|
||||||
|
proxy_set_header Host $host;
|
||||||
|
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 $scheme;
|
||||||
|
proxy_set_header X-Forwarded-Protocol $scheme;
|
||||||
|
proxy_set_header X-Forwarded-Host $http_host;
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
"/" = {
|
||||||
proxyPass = "http://100.104.25.128:8096";
|
proxyPass = "http://100.104.25.128:8096";
|
||||||
extraConfig = ''
|
extraConfig = ''
|
||||||
allow all;
|
allow all;
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
};
|
||||||
"jellyseerr.mccarty.io" = {
|
"jellyseerr.mccarty.io" = {
|
||||||
forceSSL = true;
|
forceSSL = true;
|
||||||
useACMEHost = "mccarty.io";
|
useACMEHost = "mccarty.io";
|
||||||
|
|
Loading…
Reference in New Issue