plex_media_server
no way to compare when less than two revisions
Differences
This shows you the differences between two versions of the page.
Last revision | |||
— | plex_media_server [2016/07/12 15:58] – created k2patel | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== Plex ====== | ||
+ | After upgrading plex to v 1.0 i found that existing reverse proxy on nginx broke.< | ||
+ | started playing around and fixed it using following header need to be set. | ||
+ | |||
+ | In your nginx. | ||
+ | <code bash> | ||
+ | proxy_set_header | ||
+ | proxy_set_header | ||
+ | proxy_max_temp_file_size 0; | ||
+ | proxy_set_header X-Plex-Client-Identifier $http_x_plex_client_identifier; | ||
+ | proxy_set_header X-Plex-Device $http_x_plex_device; | ||
+ | proxy_set_header X-Plex-Device-Name $http_x_plex_device_name; | ||
+ | proxy_set_header X-Plex-Platform $http_x_plex_platform; | ||
+ | proxy_set_header X-Plex-Platform-Version $http_x_plex_platform_version; | ||
+ | proxy_set_header X-Plex-Product $http_x_plex_product; | ||
+ | proxy_set_header X-Plex-Token $http_x_plex_token; | ||
+ | proxy_set_header X-Plex-Version $http_x_plex_version; | ||
+ | proxy_set_header X-Plex-Nocache $http_x_plex_nocache; | ||
+ | proxy_set_header X-Plex-Provides $http_x_plex_provides; | ||
+ | proxy_set_header X-Plex-Device-Vendor $http_x_plex_device_vendor; | ||
+ | proxy_set_header X-Plex-Model $http_x_plex_model; | ||
+ | </ | ||
+ | |||
+ | On top of that this might help if it keep asking you for the login.< | ||
+ | in your **/ | ||
+ | |||
+ | <code bash> | ||
+ | allowedNetworks=" | ||
+ | </ | ||
+ | |||
+ | NOTE : Make sure you do authentication by another mean because it might open up your plex to world. |
plex_media_server.txt · Last modified: 2020/08/10 02:35 by 127.0.0.1