Camera Upload feature stops working if Plex Server is behind a Nginx proxy. This is due to default maximum body size being set to 1M. Since photos on the modern phones are larger than that, they cannot be uploaded and Nginx reports the following error:
client intended to send too large body
The PR changes client_max_body_size to a larger one (100M), so the Camera Upload feature could work.
Camera Upload feature stops working if Plex Server is behind a Nginx proxy. This is due to default maximum body size being set to 1M. Since photos on the modern phones are larger than that, they cannot be uploaded and Nginx reports the following error:
The PR changes
client_max_body_size
to a larger one (100M), so the Camera Upload feature could work.