Skip to content

Instantly share code, notes, and snippets.

@flashvnn
Last active September 13, 2022 09:46
Show Gist options
  • Save flashvnn/452482cdf95da1b0d4223d499fd52db8 to your computer and use it in GitHub Desktop.
Save flashvnn/452482cdf95da1b0d4223d499fd52db8 to your computer and use it in GitHub Desktop.
Wget, CURL disable ssl check
# 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