Certbot with Apache

certbot and apache Prelim Concepts A .pfx file is a PKCS#12 archive. Typically, a PKCS#12 archive contains a certificate (possibly with its assorted set of CA certificates) and the corresponding private key. A .cert (or .cer or .crt)…
Continue Reading

Installing certbot on an EC2 using AWS Systems Manager

Registering the certbot client and requesting a certificate      - sudo yum -y install yum-utils     - sudo yum -y install      - sudo yum-config-manager --enable rhui-REGION-rhel-server-extras rhui-REGION-rhel-server-optional     - sudo yum -y install certbot     - sudo certbot register --server {{ CertServerUrl }} -m {{ contactEmail }} --no-eff-email     - sudo certbot certonly --server {{ CertServerUrl }} --cert-name {{ certName }} -d {{ certDomains }} --webroot-path {{ webrootPath }} > / The terraform file () # input variables variable "instance_ids" {   type =  list   default =  } variable "cert_common_name" {   type    = string   default = "avTestCert" }…
Continue Reading