How do I deploy large files to Artifactory?

How do I deploy large files to Artifactory?

AuthorFullName__c
JFrog Support
articleNumber
000001560
ft:sourceType
Salesforce
FirstPublishedDate
2016-10-06T13:35:56Z
lastModifiedDate
2021-01-07
VersionNumber
6

By default, Artifactory limits UI-generated file deployments to 100MB. You are free to adjust this limit at Administration > Artifactory > General (in version 7.x); at Admin > General (in version 6.x or lower). Once there, you may set a maximum file size for your uploads in the File Upload Max Size (MB) field.

Note: We have determined that the default limit is the optimal setting to prevent browser session timeouts. Accordingly, rather than change the default limit, we recommend that you deploy large files via REST API, where a deploy query might look something like this:

curl -X PUT -u myUser:myPassword -T test.txt "http://localhost:8081/artifactory/libs-release-local/test/test.txt"

A bash example is available HERE.