Resolution:

ARTIFACTORY: Why am I getting intermittent 500 errors when uploading large files?

AuthorFullName__c
Luzeen Halaby
articleNumber
000005653
ft:sourceType
Salesforce
FirstPublishedDate
2023-03-30T06:23:03Z
lastModifiedDate
2023-03-29
VersionNumber
1
In such a case, and based on our Nginx wiki page, it is recommended to turn off the request buffering option and enable the HTTP/1.1.
In order to apply the mentioned and required changes, the Nginx configuration should include the values below:
proxy_request_buffering off;
proxy_http_version 1.1;

Lastly, I’d like to share the recommended Nginx configuration for your reference to review.

** In this article we are showing an example of an issue with lack of space on the device. Please note that the 500 internal error could occur due to other reasons that lead to observing it which requires resolving it in different ways.