How to sync from http to http endpoint

Hi,

Is there any possibility to get data from HTTP (listing is allowed) and synced to the other HTTP server (username and password or API-key needed) with rclone?

thanks

That is possible with the http backend

That is harder... There isn't a standard HTTP upload procedure. What sort of server is this?

Hi

Both HTTP servers are using Jfrog Artifactory (https://www.jfrog.com/confluence/display/RTF/). So I can upload files to artifactory with curl regular username and password way:

curl -u testuser -X PUT https://someserver/somerepo/ -T mypackage.zip

and the API-KEY method:

curl -H "X-JFrog-Art-Api:my_jfrog_api_key" -X PUT "https://someserver/somerepo/" -T mypackage.zip

What i want to do is mirroring data from one artifactory (file listing allowed) to another artifactory (which requires authenication via username/password or api-key). The key point is that I want to upload my data to via artifactory to test artifactory's performance.

So, any idea how to sync http to http?

Artifactory appears to support WebDAV - can you try that for the upload?

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.