Recently I used curl command a lot in several Continuous Integration projects. I wrote this post to summarize a few commonly-used options. -s This option enables silent mode, in which progress bar and error messages will not shown -S This… Read More
curl command examples
I post a few curl command example for future reference curl -f –create-dirs -o /path/to/local/file http://foo.com/path/to/remote/file -f: fail silently on server errors. –create-dirs: create missing directories -o: the path of the local file curl -f -v –user “username:password” –upload-file /path/to/local/file… Read More
pitfalls and tips when using self-signed certificate
A few days ago, I encountered an issue when using a self-signed certificate. The use case of the self-signed certificate is simple. I created a self-signed certificate with openssl and configure it in the application. There is no issue on… Read More