SSL Queries

Installing an SSL Using the PEM file via terminal: #

rawurlencode() {
  local string="${1}"
  local strlen=${#string}
  local encoded=""
  local pos c o  for (( pos=0 ; pos<strlen ; pos++ )); do
     c=${string:$pos:1}
     case "$c" in
        [-_.~a-zA-Z0-9] ) o="${c}" ;;
        * )               printf -v o '%%%02x' "'$c"
     esac
     encoded+="${o}"
  done
  echo "${encoded}"    # You can either set a return variable (FASTER)
  REPLY="${encoded}"   #+or echo the result (EASIER)... or both... :p
} uapi SSL install_ssl domain='domain.com' key=$( rawurlencode "`cat domain_com.key`") cert==$( rawurlencode "`cat domain_com.pem`")

The above does need to be on cPanel and a Redhat based OS.

Manually Install Let’s Encrypt SSL from terminal: #

domain=hasslefreewebs.com

cd ~; curl --silent https://raw.githubusercontent.com/srvrco/getssl/master/getssl > getssl ; chmod 700 getssl
sed -i 's/curl -k/curl -Aagent -k/' ./getssl
./getssl -c $domain
configFile=.getssl/$domain/getssl.cfg; sed -i 's/SANS/#SANS/' $configFile
echo 'CA="https://acme-v01.api.letsencrypt.org"' >> $configFile
echo "ACL=('`docroot.py $domain`/.well-known/acme-challenge')" >> $configFile
echo "USE_SINGLE_ACL="true"" >> $configFile
echo "SANS=\"www.$domain\"" >> $configFile
./getssl $domain

uapi SSL install_ssl domain="$domain" cert=$(perl -MURI::Escape -ne 'print uri_escape($_);' ~/.getssl/$domain/$domain.crt) key=$(perl -MURI::Escape -ne 'print uri_escape($_);' ~/.getssl/$domain/$domain.key)

--- end ---
Cron1:
domain=m.jsworldtrading.com ; cd ~; ./getssl $domain
Cron2
domain=m.jsworldtrading.com ; cd ~; uapi SSL install_ssl domain="$domain" cert=$(perl -MURI::Escape -ne 'print uri_escape($_);' ~/.getssl/$domain/$domain.crt) key=$(perl -MURI::Escape -ne 'print uri_escape($_);' ~/.getssl/$domain/$domain.key)