Reputation: 11
What are some ways to teach asdf to ignore certificate validation or teach it to bypass proxies?
For curl
, this problem is solved like this:
$ echo '--proxy ""' >> ~/.curlrc
OR
$ echo '-k' >> ~/.curlrc
OR
alias curl='curl --proxy ""'
OR
alias curl='curl -k ""'
For wget
like this:
$ echo 'use_proxy = off' >> ~/.wgetrc
OR
$ echo 'check-certificate = off' >> ~/.wgetrc
OR
alias wget="wget --no-check-certificate"
For git
like so:
$ git config --global --add remote.origin.proxy ""
OR
$ git config --global http.sslverify false
But how is this problem solved for asdf
?
Img: https://i.sstatic.net/v9A1l.png)](https://i.sstatic.net/v9A1l.png
I tried to specify any of those parameters in the ~/.asdfrc
file that are suitable for curl
, wget
, but it does not work.
Upvotes: 1
Views: 589