{"id":5573,"date":"2020-04-27T14:06:27","date_gmt":"2020-04-27T08:36:27","guid":{"rendered":"https:\/\/blog.pheonixsolutions.com\/?p=5573"},"modified":"2020-06-01T18:16:01","modified_gmt":"2020-06-01T12:46:01","slug":"how-to-install-lets-encrypt-with-apache-on-centos-7","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-lets-encrypt-with-apache-on-centos-7\/","title":{"rendered":"How to install Let\u2019s Encrypt with Apache on CentOS 7"},"content":{"rendered":"\n<h4 class=\"wp-block-heading\">How to install Let\u2019s Encrypt with Apache on CentOS 7<\/h4>\n\n\n\n<h4 class=\"wp-block-heading\">Date: 24.04.2020<\/h4>\n\n\n\n<h4 class=\"wp-block-heading\">Introduction:<\/h4>\n\n\n\n<p>Let\u2019s Encrypt is a free and open-source certificate authority (CA) that allows obtaining and installing certificates through simple, automated commands.<br><br>It provides a valid SSL certificate for your domain without any cost.<br><br>Let\u2019s Encrypt certificates are valid for 90 days by default. So it is recommended to renew the certificate before it expires.<br><br>It is improving your website security through SSL encryption can increase your visitors\u2019 trust in your website.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"672\" height=\"159\" src=\"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2020\/04\/xHow-to-Install-Lets-Encrypt-SSL-Certificate.png.pagespeed.ic_.BopatLqfEz.png\" alt=\"\" class=\"wp-image-5619\" srcset=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2020\/04\/xHow-to-Install-Lets-Encrypt-SSL-Certificate.png.pagespeed.ic_.BopatLqfEz.png 672w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2020\/04\/xHow-to-Install-Lets-Encrypt-SSL-Certificate.png.pagespeed.ic_.BopatLqfEz-300x71.png 300w\" sizes=\"auto, (max-width: 672px) 100vw, 672px\" \/><\/figure>\n\n\n\n<h4 class=\"wp-block-heading\">Step 1: Connect via SSH and update the OS:<\/h4>\n\n\n\n<p class=\"has-text-align-left\">Connect to your server via SSH as the root user using the following command:<br>                  <em><strong> ssh root@your server IP -p port number<\/strong><\/em><br><br>We make sure the system is fully up to date before installing any packages.<br>                <em><strong>  # yum -y update<\/strong><\/em><\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Step 2: Install and Configure Apache:<\/strong><\/h4>\n\n\n\n<p class=\"has-text-align-left\">We are going to use Apache as our web server.<br>Install Apache:<br>          <strong>    <em>  # yum -y install httpd<\/em><\/strong><br><br>Start the Apache:<br>               <em>#<strong>systemctl start httpd<\/strong><\/em><br><br>Enable Apache: To start on server boot.<br>           <em>   <strong>#systemctl enable httpd<\/strong><\/em><br><br>Create a document root folder for your site:<br>          <em>    <strong># mkdir \/var\/www\/pheonixsolutions<\/strong><\/em><br><br>Make sure your document root has the default permissions:<br>             <strong><em>#chmod -R 755 \/var\/www<\/em><\/strong><br><br>We need to create a new Apache configuration file by using the following command:<br>              <em>#<strong>nano \/etc\/httpd\/conf.d\/pheonixsolutions.com.conf<\/strong><\/em><br><br>Add the following lines:<br><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">&lt;VirtualHost *:80&gt;\n    ServerAdmin admin@pheonixsolutions.com\n    DocumentRoot \"\/var\/www\/pheonixsolutions\"\n    ServerName pheonixsolutions.com\n    ServerAlias www.pheonixsolutions.com\n    ErrorLog \"\/var\/log\/httpd\/pheonixsolutions.error_log\"\n    CustomLog \"\/var\/log\/httpd\/pheonixsolutions.access_log\" common\n&lt;\/VirtualHost&gt;<\/pre>\n\n\n\n<p class=\"has-text-align-left\">Save and close the file.<br><br>Add an index.html file for testing purposes later with the following contents:<br>         <strong><em># nano \/var\/www\/pheonixsolutions\/index.html<\/em><\/strong><br><br>Add the following lines:<br><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">&lt;html&gt;\nTest - Welcome to The Apache Web Server.\n&lt;\/html&gt;<\/pre>\n\n\n\n<p>Save the file and change owner of the \u2018\/var\/www\/html\/index.html\u2019 file to the apache user so Apache can read the file:<br><strong><em><br>         #chown -R apache: apache \/var\/www\/pheonixsolutions\/index.html<\/em><\/strong><\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Step 3: Install Certbot<\/strong>:<\/h4>\n\n\n\n<p>Certbot is a simple tool and easy to use. <br>Enable the &#8220;mod_ssl&#8221; Apache module on the server. <br>Install the mod_ssl module:<br>                <strong><em># yum -y install mod_ssl<\/em><\/strong><br><br>By default, the Certbot package is not available in the CentOS 7 default OS repository. We need to enable the EPEL repository, <br>To add the EPEL repository run the following command:<br>              <strong><em># yum -y install epel-release<\/em><\/strong><br><br>Then install Certbot for Apache:<br>             <strong><em># yum -y install certbot-apach<\/em><\/strong>e<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Step 4: Obtain and Install SSL for your Domain:<\/h4>\n\n\n\n<p>Now Certbot is installed, you can use it to obtain and install an SSL certificate for your domain.<br><br>Run Certbot:<br><strong><em># certbot -apache<\/em><\/strong><br><br>Certbot will ask you for the names you to activate HTTPS for which domains like below:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">Saving debug log to \/var\/log\/letsencrypt\/letsencrypt.log\nPlugins selected: Authenticator apache, Installer apache\nStarting new HTTPS connection (1): acme-v01.api.letsencrypt.org\n\nWhich names would you like to activate HTTPS for?\n-------------------------------------------------------------------------------\n1: pheonixsolutions.com\n2: www.pheonixsolutions.com\n-------------------------------------------------------------------------------\nSelect the appropriate numbers separated by commas and\/or spaces, or leave input\nblank to select all options shown (Enter 'c' to cancel):<\/pre>\n\n\n\n<p>Run the following command to obtain and install an SSL certificate for your  single domain:<br><strong><em> #certbot -apache -d <\/em>pheonixsolutions.com<\/strong><\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\"><p>We can also install a single certificate for multiple domains and subdomains hosted on the server with the \u2018-d\u2019 flag. <br><br><strong><em>#certbot -apache -d pheonixsolutions.com -d www.pheonixsolutions.com<\/em><\/strong><\/p><\/blockquote>\n\n\n\n<p>We will be asked to provide an email address and agree to the terms of service.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">Saving debug log to \/var\/log\/letsencrypt\/letsencrypt.log\nPlugins selected: Authenticator apache, Installer apache\nEnter email address (used for urgent renewal and security notices) (Enter 'c' to\ncancel): admin@pheonixsolutions.com\nStarting new HTTPS connection (1): acme-v02.api.letsencrypt.org\n\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\nPlease read the Terms of Service at\nhttps:\/\/letsencrypt.org\/documents\/LE-SA-v1.2-November-15-2020.pdf. You must\nagree in order to register with the ACME server at\nhttps:\/\/acme-v02.api.letsencrypt.org\/directory\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\n(A)gree\/(C)ancel: A\n\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\nWould you be willing to share your email address with the Electronic Frontier\nFoundation, a founding partner of the Let's Encrypt project and the non-profit\norganization that develops Certbot? We'd like to send you email about our work\nencrypting the web, EFF news, campaigns, and ways to support digital freedom.\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\n(Y)es\/(N)o: N\nStarting new HTTPS connection (1):&nbsp;<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"http:\/\/acme-v02.api.letsencrypt.org\/\">api.letsencrypt.org<\/a>\nObtaining a new certificate\nPerforming the following challenges:\nhttp-01 challenge for&nbsp;pheonixsolutions.com\nhttp-01 challenge for www.pheonixsolutions.com\nWaiting for verification...\nCleaning up challenges\nCreated an SSL vhost at \/etc\/httpd\/conf.d\/pheonixsolutions.com-le-ssl.conf\nDeploying Certificate to VirtualHost \/etc\/httpd\/conf.d\/pheonixsolutions.com-le-ssl.conf<\/pre>\n\n\n\n<p>Type Y and hit [Enter], and you should see the following output:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">Please choose whether or not to redirect HTTP traffic to HTTPS, removing HTTP access.\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\n1: No redirect - Make no further changes to the webserver configuration.\n2: Redirect - Make all requests redirect to secure HTTPS access. Choose this for\nnew sites, or if you're confident your site works on HTTPS. You can undo this\nchange by editing your web server's configuration.\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\nSelect the appropriate number [1-2] then [enter] (press 'c' to cancel): 2<\/pre>\n\n\n\n<p>Here, you need to choose any one option to continue. <br>If you choose option 1, it will only download an SSL certificate and you need to configure Apache manually to use an SSL certificate. <br>If you choose option 2, it will automatically download and configure Apache to use an SSL certificate. <br><br>In this case, choose option 2 and hit [Enter]. When the installation is successfully finished, you will see a message similar to this:<br><br><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\nCongratulations! You have successfully enabled https:\/\/pheonixsolutions.com and https:\/\/www.pheonixsolutions.com\n\nYou should test your configuration at:\n<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https:\/\/www.ssllabs.com\/ssltest\/analyze.html?d=tribwu.com\">https:\/\/www.ssllabs.com\/ssltest\/analyze.html?d=<\/a>pheonixsolutions.com\n<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https:\/\/www.ssllabs.com\/ssltest\/analyze.html?d=www.tribwu.com\">https:\/\/www.ssllabs.com\/ssltest\/analyze.html?d=<\/a>www.pheonixsolutions.com\n\nIMPORTANT NOTES: - Congratulations! Your certificate and chain have been saved at: \/etc\/letsencrypt\/live\/pheonixsolutions.com-0001\/fullchain.pem Your key file has been saved at: \/etc\/letsencrypt\/live\/pheonixsolutions.com-0001\/privkey.pem Your cert will expire on 2020-07-22. To obtain a new or tweaked version of this certificate in the future, simply run certbot again with the \"certonly\" option. To non-interactively renew *all* of your certificates, run \"certbot renew\" - If you like Certbot, please consider supporting our work by: Donating to ISRG \/ Let's Encrypt: https:\/\/letsencrypt.org\/donate Donating to EFF: https:\/\/eff.org\/donate-le<\/pre>\n\n\n\n<p>The generated certificate files are available in the&nbsp;<strong>\/etc\/letsencrpt\/live\/pheonixsolutions.com<\/strong>&nbsp;directory. You can check the newly created SSL certificate with the following command:<\/p>\n\n\n\n<p><strong><em>#ls \/etc\/letsencrypt\/live\/pheonixsolutions.com\/<\/em><\/strong><\/p>\n\n\n\n<p>You should see the following output:<br><strong>cert.pem chain.pem fullchain.pem privkey.pem<\/strong><\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Step 5: Check Your SSL Certificate:<\/h4>\n\n\n\n<p>Open your web browser and type the URL&nbsp;<strong>https:\/\/pheonixsolutions.com<\/strong>&nbsp;.&nbsp; To check the SSL certificate in Chrome, click on the padlock icon in the address bar for <strong>https:\/\/pheonixsolutions.com<\/strong>,&nbsp;and from the pop-up box, click on \u2018Valid\u2019 under the \u2018Certificate\u2019 prompt.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"859\" height=\"639\" src=\"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2020\/04\/SSL.png\" alt=\"\" class=\"wp-image-5617\" srcset=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2020\/04\/SSL.png 859w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2020\/04\/SSL-300x223.png 300w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2020\/04\/SSL-768x571.png 768w\" sizes=\"auto, (max-width: 859px) 100vw, 859px\" \/><\/figure>\n\n\n\n<p><\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Step 6: Set up Automatic Renewal:<\/h4>\n\n\n\n<p>We can test the renewal process manually with the following command.<br>                    <strong><em>  #certbot renew <\/em><\/strong><\/p>\n\n\n\n<p>We can also add a cronjob to automatically run the above command twice a day.<br>Execute the following command to edit the crontab:<br>                     <strong><em># crontab -e<\/em><\/strong><br>Add the following line:<br>* *\/12 * * * root \/usr\/bin\/certbot renew &gt;\/dev\/null 2&gt;&amp;1<br>Save and close the file.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Conclusion:<\/h4>\n\n\n\n<p>Thank you.<br>We have successfully installed and configured Let\u2019s Encrypt with Apache on CentOS 7.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"611\" height=\"107\" src=\"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2020\/04\/xHow-to-Install-Lets-Encrypt-SSL-Certificate-1.png.pagespeed.ic_.BopatLqfEz-1.png\" alt=\"\" class=\"wp-image-5620\" srcset=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2020\/04\/xHow-to-Install-Lets-Encrypt-SSL-Certificate-1.png.pagespeed.ic_.BopatLqfEz-1.png 611w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2020\/04\/xHow-to-Install-Lets-Encrypt-SSL-Certificate-1.png.pagespeed.ic_.BopatLqfEz-1-300x53.png 300w\" sizes=\"auto, (max-width: 611px) 100vw, 611px\" \/><\/figure>\n","protected":false},"excerpt":{"rendered":"<p>How to install Let\u2019s Encrypt with Apache on CentOS 7 Date: 24.04.2020 Introduction: Let\u2019s Encrypt is a free and open-source certificate authority (CA) that allows obtaining and installing certificates through simple, automated commands. It provides a valid SSL certificate for your domain without any cost. Let\u2019s Encrypt certificates are valid&hellip; <a href=\"https:\/\/pheonixsolutions.com\/blog\/how-to-install-lets-encrypt-with-apache-on-centos-7\/\" class=\"more-link read-more\" rel=\"bookmark\">Continue Reading <span class=\"screen-reader-text\">How to install Let\u2019s Encrypt with Apache on CentOS 7<\/span><i class=\"fa fa-arrow-right\"><\/i><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[313,526,525,220],"tags":[425],"class_list":{"0":"post-5573","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"hentry","6":"category-apache","7":"category-lets-encrypt","8":"category-ssl-2","9":"category-web-server","10":"tag-lets-encrpyt-ssl","11":"h-entry","13":"h-as-article"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Pheonix Solutions - We Empower Your Business Growth<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/pheonixsolutions.com\/blog\/how-to-install-lets-encrypt-with-apache-on-centos-7\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Pheonix Solutions - We Empower Your Business Growth\" \/>\n<meta property=\"og:description\" content=\"How to install Let\u2019s Encrypt with Apache on CentOS 7 Date: 24.04.2020 Introduction: Let\u2019s Encrypt is a free and open-source certificate authority (CA) that allows obtaining and installing certificates through simple, automated commands. It provides a valid SSL certificate for your domain without any cost. Let\u2019s Encrypt certificates are valid&hellip; Continue Reading How to install Let\u2019s Encrypt with Apache on CentOS 7\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pheonixsolutions.com\/blog\/how-to-install-lets-encrypt-with-apache-on-centos-7\/\" \/>\n<meta property=\"og:site_name\" content=\"PHEONIXSOLUTIONS\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/\" \/>\n<meta property=\"article:published_time\" content=\"2020-04-27T08:36:27+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-06-01T12:46:01+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2020\/04\/xHow-to-Install-Lets-Encrypt-SSL-Certificate.png.pagespeed.ic_.BopatLqfEz.png\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:site\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-lets-encrypt-with-apache-on-centos-7\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-lets-encrypt-with-apache-on-centos-7\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/0ffa33d73c869faec2d50e79c24e3503\"},\"headline\":\"How to install Let\u2019s Encrypt with Apache on CentOS 7\",\"datePublished\":\"2020-04-27T08:36:27+00:00\",\"dateModified\":\"2020-06-01T12:46:01+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-lets-encrypt-with-apache-on-centos-7\\\/\"},\"wordCount\":736,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-lets-encrypt-with-apache-on-centos-7\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/blog.pheonixsolutions.com\\\/wp-content\\\/uploads\\\/2020\\\/04\\\/xHow-to-Install-Lets-Encrypt-SSL-Certificate.png.pagespeed.ic_.BopatLqfEz.png\",\"keywords\":[\"Lets Encrpyt SSL\"],\"articleSection\":[\"Apache\",\"Lets Encrypt\",\"SSL\",\"Web Server\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-lets-encrypt-with-apache-on-centos-7\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-lets-encrypt-with-apache-on-centos-7\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-lets-encrypt-with-apache-on-centos-7\\\/\",\"name\":\"Pheonix Solutions - We Empower Your Business Growth\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-lets-encrypt-with-apache-on-centos-7\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-lets-encrypt-with-apache-on-centos-7\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/blog.pheonixsolutions.com\\\/wp-content\\\/uploads\\\/2020\\\/04\\\/xHow-to-Install-Lets-Encrypt-SSL-Certificate.png.pagespeed.ic_.BopatLqfEz.png\",\"datePublished\":\"2020-04-27T08:36:27+00:00\",\"dateModified\":\"2020-06-01T12:46:01+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-lets-encrypt-with-apache-on-centos-7\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-lets-encrypt-with-apache-on-centos-7\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-lets-encrypt-with-apache-on-centos-7\\\/#primaryimage\",\"url\":\"https:\\\/\\\/blog.pheonixsolutions.com\\\/wp-content\\\/uploads\\\/2020\\\/04\\\/xHow-to-Install-Lets-Encrypt-SSL-Certificate.png.pagespeed.ic_.BopatLqfEz.png\",\"contentUrl\":\"https:\\\/\\\/blog.pheonixsolutions.com\\\/wp-content\\\/uploads\\\/2020\\\/04\\\/xHow-to-Install-Lets-Encrypt-SSL-Certificate.png.pagespeed.ic_.BopatLqfEz.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-lets-encrypt-with-apache-on-centos-7\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to install Let\u2019s Encrypt with Apache on CentOS 7\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"name\":\"Pheonix Solutions\",\"description\":\"We Empower Your Business Growth\",\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\",\"name\":\"PheonixSolutions\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"width\":454,\"height\":300,\"caption\":\"PheonixSolutions\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/PheonixSolutions-209942982759387\\\/\",\"https:\\\/\\\/x.com\\\/pheonixsolution\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/0ffa33d73c869faec2d50e79c24e3503\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"http:\\\/\\\/blog.pheonixsolutions.com\"],\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/author\\\/admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Pheonix Solutions - We Empower Your Business Growth","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-lets-encrypt-with-apache-on-centos-7\/","og_locale":"en_US","og_type":"article","og_title":"Pheonix Solutions - We Empower Your Business Growth","og_description":"How to install Let\u2019s Encrypt with Apache on CentOS 7 Date: 24.04.2020 Introduction: Let\u2019s Encrypt is a free and open-source certificate authority (CA) that allows obtaining and installing certificates through simple, automated commands. It provides a valid SSL certificate for your domain without any cost. Let\u2019s Encrypt certificates are valid&hellip; Continue Reading How to install Let\u2019s Encrypt with Apache on CentOS 7","og_url":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-lets-encrypt-with-apache-on-centos-7\/","og_site_name":"PHEONIXSOLUTIONS","article_publisher":"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","article_published_time":"2020-04-27T08:36:27+00:00","article_modified_time":"2020-06-01T12:46:01+00:00","og_image":[{"url":"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2020\/04\/xHow-to-Install-Lets-Encrypt-SSL-Certificate.png.pagespeed.ic_.BopatLqfEz.png","type":"","width":"","height":""}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@pheonixsolution","twitter_site":"@pheonixsolution","twitter_misc":{"Written by":"admin","Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-lets-encrypt-with-apache-on-centos-7\/#article","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-lets-encrypt-with-apache-on-centos-7\/"},"author":{"name":"admin","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/0ffa33d73c869faec2d50e79c24e3503"},"headline":"How to install Let\u2019s Encrypt with Apache on CentOS 7","datePublished":"2020-04-27T08:36:27+00:00","dateModified":"2020-06-01T12:46:01+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-lets-encrypt-with-apache-on-centos-7\/"},"wordCount":736,"commentCount":0,"publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-lets-encrypt-with-apache-on-centos-7\/#primaryimage"},"thumbnailUrl":"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2020\/04\/xHow-to-Install-Lets-Encrypt-SSL-Certificate.png.pagespeed.ic_.BopatLqfEz.png","keywords":["Lets Encrpyt SSL"],"articleSection":["Apache","Lets Encrypt","SSL","Web Server"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pheonixsolutions.com\/blog\/how-to-install-lets-encrypt-with-apache-on-centos-7\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-lets-encrypt-with-apache-on-centos-7\/","url":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-lets-encrypt-with-apache-on-centos-7\/","name":"Pheonix Solutions - We Empower Your Business Growth","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-lets-encrypt-with-apache-on-centos-7\/#primaryimage"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-lets-encrypt-with-apache-on-centos-7\/#primaryimage"},"thumbnailUrl":"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2020\/04\/xHow-to-Install-Lets-Encrypt-SSL-Certificate.png.pagespeed.ic_.BopatLqfEz.png","datePublished":"2020-04-27T08:36:27+00:00","dateModified":"2020-06-01T12:46:01+00:00","breadcrumb":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-lets-encrypt-with-apache-on-centos-7\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pheonixsolutions.com\/blog\/how-to-install-lets-encrypt-with-apache-on-centos-7\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-lets-encrypt-with-apache-on-centos-7\/#primaryimage","url":"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2020\/04\/xHow-to-Install-Lets-Encrypt-SSL-Certificate.png.pagespeed.ic_.BopatLqfEz.png","contentUrl":"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2020\/04\/xHow-to-Install-Lets-Encrypt-SSL-Certificate.png.pagespeed.ic_.BopatLqfEz.png"},{"@type":"BreadcrumbList","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-lets-encrypt-with-apache-on-centos-7\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pheonixsolutions.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to install Let\u2019s Encrypt with Apache on CentOS 7"}]},{"@type":"WebSite","@id":"https:\/\/pheonixsolutions.com\/blog\/#website","url":"https:\/\/pheonixsolutions.com\/blog\/","name":"Pheonix Solutions","description":"We Empower Your Business Growth","publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pheonixsolutions.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/pheonixsolutions.com\/blog\/#organization","name":"PheonixSolutions","url":"https:\/\/pheonixsolutions.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","contentUrl":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","width":454,"height":300,"caption":"PheonixSolutions"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","https:\/\/x.com\/pheonixsolution"]},{"@type":"Person","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/0ffa33d73c869faec2d50e79c24e3503","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","caption":"admin"},"sameAs":["http:\/\/blog.pheonixsolutions.com"],"url":"https:\/\/pheonixsolutions.com\/blog\/author\/admin\/"}]}},"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/p7F4uM-1rT","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/5573","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/comments?post=5573"}],"version-history":[{"count":0,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/5573\/revisions"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/media?parent=5573"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/categories?post=5573"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/tags?post=5573"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}