Plex: Difference between revisions
Reorganize Plex clients |
Let's not recommended deprecated TLS versions and questionable (in-)security ricing |
||
| (One intermediate revision by one other user not shown) | |||
| Line 46: | Line 46: | ||
=== Plex Desktop === | === Plex Desktop === | ||
Alternatively, a | Alternatively, a newer and more modern Plex client called Plex Desktop is packaged in Nix as plex-desktop. | ||
To be able to sign in in Plex Desktop, you may need to set <code>xdg.portal.xdgOpenUsePortal = true;</code> in your NixOS configuration. [https://github.com/NixOS/nixpkgs/issues/341968 See this issue]. | To be able to sign in in Plex Desktop, you may need to set <code>xdg.portal.xdgOpenUsePortal = true;</code> in your NixOS configuration. [https://github.com/NixOS/nixpkgs/issues/341968 See this issue]. | ||
| Line 82: | Line 82: | ||
ssl_stapling on; | ssl_stapling on; | ||
ssl_stapling_verify on; | ssl_stapling_verify on; | ||
# Forward real ip and host to Plex | # Forward real ip and host to Plex | ||
| Line 121: | Line 116: | ||
proxy_set_header X-Plex-Device-Vendor $http_x_plex_device_vendor; | proxy_set_header X-Plex-Device-Vendor $http_x_plex_device_vendor; | ||
proxy_set_header X-Plex-Model $http_x_plex_model; | proxy_set_header X-Plex-Model $http_x_plex_model; | ||
# Buffering off send to the client as soon as the data is received from Plex. | # Buffering off send to the client as soon as the data is received from Plex. | ||
| Line 133: | Line 123: | ||
locations."/" = { | locations."/" = { | ||
proxyPass = "http://plex.domain.tld:32400/"; | proxyPass = "http://plex.domain.tld:32400/"; | ||
proxyWebsockets = true; | |||
}; | }; | ||
}; | }; | ||