Skip to content

Instantly share code, notes, and snippets.

@misterabdul
Last active April 8, 2022 04:43
Show Gist options
  • Select an option

  • Save misterabdul/e5fd4f3691d59351b7c99b023a59ac32 to your computer and use it in GitHub Desktop.

Select an option

Save misterabdul/e5fd4f3691d59351b7c99b023a59ac32 to your computer and use it in GitHub Desktop.
Useful Console Commands

List of useful console commands

cerbot

Generate SSL certificate using certbot

sudo certbot certonly --webroot -w <web_root_path> -d <domain>

cURL

IP to country

curl ipinfo.io/59.36.168.250

Get Current Public IP

curl ifconfig.me

openssl

Generate selfsigned certificate (privkey.pem & fullchain.pem)

Reference: stackoverflow

openssl genrsa > privkey.pem
openssl req -new -x509 -key privkey.pem > fullchain.pem
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment