General question for reverse proxy users:
What headers are you forwarding?
I’m currently using the common list floating around here and wanted to ask, if there’s any official documentation or any way I can check if I’m missing anything.
proxy_set_header X-Plex-Client-Identifier $http_x_plex_client_identifier;
proxy_set_header X-Plex-Container-Size $http_x_plex_container_size;
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-Device-Vendor $http_x_plex_device_vendor;
proxy_set_header X-Plex-Model $http_x_plex_model;
proxy_set_header X-Plex-Nocache $http_x_plex_nocache;
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-Provides $http_x_plex_provides;
proxy_set_header X-Plex-Token $http_x_plex_token;
proxy_set_header X-Plex-Version $http_x_plex_version;
Asking because overseerr is causing Missing X-Plex-Container-Size header errors in the plex logs. So i just added it with the same syntax as the others. no clue if it’s right.