Skip to main content
The 2024 Developer Survey results are live! See the results

All Questions

Tagged with
1 vote
1 answer
4k views

How to recursively upload a directory which has directories and files to a server through HTTPS using curl command?

This is the command I am using: curl --insecure -i https://XX.XXX.XXX.XX/project/conatinername/foldertobeuploaded/${file}.html -X PUT -H "Content-Type: text/html charset=UTF-8; -H "Content-Length:0" -...
Viraj Rathod's user avatar
0 votes
1 answer
56 views

is calling remote bash script via https which then call another bash script with http considers secure?

It might be a silly question but I will go for it anyway… due to some backward compatibility I only adjusted part of the calling script chain. there is a reason why I call it twice but let's leave it ...
Asaf Magen's user avatar
5 votes
1 answer
24k views

Curl command to download a file over HTTPS

I need to download a particular file from https://file_path. Here is the curl command I use for that: curl --user user:password "https://file_path?raw" > location I wish to download the real ...
Hello's user avatar
  • 153