Last active
September 13, 2022 09:46
-
-
Save flashvnn/452482cdf95da1b0d4223d499fd52db8 to your computer and use it in GitHub Desktop.
Wget, CURL disable ssl check
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# WGET, (Add Last Line to /etc/wgetrc) - check_certificate = off | |
sudo bash -c "echo 'check_certificate = off' >> /etc/wgetrc" | |
# CURL, You can add insecure option to your $HOME/.curlrc file: | |
sudo bash -c "echo 'insecure' >> $HOME/.curlrc" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment