{"id":75,"date":"2019-07-09T07:09:39","date_gmt":"2019-07-09T07:09:39","guid":{"rendered":"https:\/\/www.ssls.com\/knowledgebase\/?p=75"},"modified":"2024-03-04T11:14:11","modified_gmt":"2024-03-04T11:14:11","slug":"how-to-install-an-ssl-certificate-on-apache","status":"publish","type":"post","link":"https:\/\/www.ssls.com\/knowledgebase\/how-to-install-an-ssl-certificate-on-apache\/","title":{"rendered":"How to install an SSL Certificate on Apache"},"content":{"rendered":"<p><!--StartFragment--><\/p>\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\"><p> Take the stress out of SSL installation and let <a href=\"https:\/\/www.ssls.com\/knowledgebase\/ssl-installation-service\/\">our tech experts take care of it<\/a>! <\/p><\/blockquote>\n\n\n<p><iframe loading=\"lazy\" src=\"https:\/\/www.youtube-nocookie.com\/embed\/h7S_4wE2zhA\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen=\"\" width=\"640\" height=\"420\" frameborder=\"0\"><\/iframe><\/p>\n\n\n<p>After your Certificate is issued by the Certificate Authority, you\u2019re ready to begin installation on your Apache server. <\/p>\n\n\n\n<p><em><strong>Note<\/strong>: Sometimes, the \u201cPermission Denied\u201d error may occur when running the commands. We suggest adding <\/em><code>\u201csudo\u201d <\/code><em>in front of the command to enable additional permissions. If a password is asked to enable the <code>sudo<\/code> user, you may contact your hosting provider or system administrator to get access.<\/em><\/p>\n\n\n\n<p>Follow the below steps to install your certificate:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 1: Upload Certificate Files Onto Server<\/strong><\/h3>\n\n\n\n<p>The Certificate Authority will email you a zip-archive with several .crt files.<\/p>\n\n\n\n<p>Alternatively, you can <a href=\"https:\/\/www.ssls.com\/knowledgebase\/can-i-download-certificate-somewhere-on-your-site\/\">download<\/a> the certificate files in your Account. The zip-archive will contain the Certificate for your domain name (<em>.crt)<\/em> and the<em> <\/em>CA-Bundle <em>(<\/em>.ca-bundle) file. These are known as a chain of intermediate and root Certificates.<\/p>\n\n\n\n<p>If you uploaded the intermediate Certificates separately onto your server, you will need to link them into a single CA-Bundle file.&nbsp;<\/p>\n\n\n\n<p>For a PositiveSSL Certificate, use the following command to combine the intermediate and root certificates:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><strong>cat COMODORSADomainValidationSecureServerCA.crt COMODORSAAddTrustCA.crt AddTrustExternalCARoot.crt &gt;&gt; bundle.crt<\/strong><\/pre>\n\n\n\n<p>You can download the complete CA-Bundle files for our Certificates <a href=\"https:\/\/www.ssls.com\/knowledgebase\/where-do-i-get-a-ca-bundle-file\/\">here<\/a>.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 2: Locate Apache Configuration File&nbsp;<\/strong><\/h3>\n\n\n\n<p>The location and the name of the Apache configuration file may differ depending on the server and OS version you\u2019re using. The file may be called <em>httpd.conf<\/em>, <em>apache2.conf <\/em>or <em>ssl.conf<\/em> and may be located at <strong>\/etc\/httpd\/<\/strong>, <strong>\/etc\/apache2\/<\/strong> or <strong>\/etc\/httpd\/conf.d\/ssl.conf<\/strong>.<\/p>\n\n\n\n<p>The configuration file contains the Virtual Hosts for all domains that are hosted on the server.<\/p>\n\n\n\n<p><strong>Note:<\/strong> if you have Apache server installed on the Ubuntu operating system, each site has a separate configuration that can be found at <strong>\/etc\/apache2\/sites-enabled\/<\/strong>. To have your site accessible via secure and non-secure connection, you will need two separate configuration files: one for port 80 and the other for port 443.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 3: Configure Virtual Host Section<\/strong><\/h3>\n\n\n\n<p>You\u2019ll need to add or modify the virtual host for port 443 in the configuration file.&nbsp;<\/p>\n\n\n\n<p>We recommend you backup the configuration file before making any changes to it. This way you can revert the changes if something goes wrong. Simply copy and save your current <em>*.conf file<\/em> as <em>*.conf_backup<\/em>:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><strong>cp default-ssl.conf default-ssl.conf_backup<\/strong><\/pre>\n\n\n\n<p>Make sure that the Virtual Host has the following directives, with no # in front of them:<\/p>\n\n\n\n<ol class=\"wp-block-list\"><li><strong>SSLEngine<\/strong> on<\/li><li><strong>SSLCertificateFile<\/strong> pointed to the location of the Certificate issued for your domain name<\/li><li><strong>SSLCertificateKeyFile<\/strong> pointed to the location of your Private Key on the server.<\/li><li><strong>SSLCertificateChainFile<\/strong> pointed to the location of the CA-Bundle file.<\/li><\/ol>\n\n\n\n<p>The Virtual Host for 443 port should look the following way:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><strong>&lt;VirtualHost [IP ADDRESS]:443&gt;\nServerAdmin webmaster@ssl-tutorials.com\nDocumentRoot var\/www\nServerName www.ssl-tutorials.com\nErrorLog www\/home\/logs\/error_log\nSSLEngine on\nSSLCertificateFile \/etc\/ssl\/ssl-tutorials_com.crt\nSSLCertificateKeyFile \/etc\/ssl\/ssl-tutorials.key\nSSLCertificateChainFile \/etc\/ssl\/ssl-tutorials_com.ca-bundle\n&lt;\/VirtualHost&gt; <\/strong><\/pre>\n\n\n\n<p><strong>Note:<\/strong> starting from Apache 2.4.8, the <strong>SSLCertificateChainFile<\/strong> directive became obsolete. Intermediate Certificates can now be added to the SSLCertificateFile.<br><\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 4: Enabling OCSP Stapling<\/strong><\/h3>\n\n\n\n<p><a href=\"https:\/\/www.ssls.com\/knowledgebase\/what-is-ocsp-stapling\/\">OCSP Stapling<\/a> improves performance by providing the clients with up-to-date status of your certificate.<\/p>\n\n\n\n<p>If you want to enable OCSP Stapling for the website, please add the following directive to the Virtual Host:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><strong>SSLUseStapling on<\/strong><\/pre>\n\n\n\n<p>Also specify the OCSP cache response location and size outside of the Virtual Host section, using <em>SSLStaplingCache<\/em> directive:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><strong>SSLStaplingCache shmcb:\/tmp\/stapling_cache(128000)<\/strong><\/pre>\n\n\n\n<p><strong>Note: <\/strong>OCSP Stapling is only enabled for configuration from Apache HTTP server 2.3.3 and higher.<br><\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 5<\/strong><strong>: Save &amp; Restart <\/strong><\/h3>\n\n\n\n<p>The process varies depending on the exact Apache configuration that you have:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>For <em>Debian-based<\/em> Apache, you can run this command to test if the new configuration of your Apache service has the proper syntax:<\/li><\/ul>\n\n\n\n<p><code>apachectl -t<\/code><\/p>\n\n\n\n<p> If the syntax is OK, save your changes in the configuration file and restart Apache using these <code>apachectl<\/code> commands:<\/p>\n\n\n\n<p><code>apachectl restart<\/code><\/p>\n\n\n\n<p><code>apachectl stop<\/code><\/p>\n\n\n\n<p><code>apachectl start<\/code><\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>For <em>RHEL-based<\/em> distributive (CentOS, RedHat, etc.), you can check the syntax by running:<\/li><\/ul>\n\n\n\n<p><code>httpd -t<\/code> <\/p>\n\n\n\n<p>If it returns Syntax <code>OK<\/code>, you can proceed with the Apache restart:<\/p>\n\n\n\n<p><code>sudo service httpd restart<\/code><\/p>\n\n\n\n<p>And this command can be used to see whether the last SSL configuration file was added to the settings (check the <code>*.443:<\/code> line in output):<\/p>\n\n\n\n<p><code>httpd -S<\/code><\/p>\n\n\n\n<p>If the Apache service fails to restart or the SSL does not get installed, make sure the configuration file is created properly. Alternatively, you can contact our support team for assistance.<\/p>\n\n\n\n<p>You can delete the modified configuration file and revert back to your backup configuration created in Step 3 at any time.<\/p>\n\n\n\n<p>Well done! Your SSL Certificate is installed. You can confirm this using the <a href=\"https:\/\/decoder.link\/sslchecker\/\">SSL Checker tool<\/a>. <\/p>\n","protected":false},"excerpt":{"rendered":"<p>Take the stress out of SSL installation and let our tech experts take care of it! After your Certificate is issued by the Certificate Authority, you\u2019re ready to begin installation on your Apache server. Note: Sometimes, the \u201cPermission Denied\u201d error may occur when running the commands. We suggest adding \u201csudo\u201d in front of the command ..<\/p>\n<div class=\"clear-fix\"><\/div>\n<p><a href=\"https:\/\/www.ssls.com\/knowledgebase\/how-to-install-an-ssl-certificate-on-apache\/\" title=\"read more...\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5],"tags":[],"class_list":["post-75","post","type-post","status-publish","format-standard","hentry","category-ssl-installation-instructions"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to install an SSL Certificate on Apache \u2013 HelpDesk | SSLs.com<\/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:\/\/www.ssls.com\/knowledgebase\/how-to-install-an-ssl-certificate-on-apache\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to install an SSL Certificate on Apache \u2013 HelpDesk | SSLs.com\" \/>\n<meta property=\"og:description\" content=\"Take the stress out of SSL installation and let our tech experts take care of it! After your Certificate is issued by the Certificate Authority, you\u2019re ready to begin installation on your Apache server. Note: Sometimes, the \u201cPermission Denied\u201d error may occur when running the commands. We suggest adding \u201csudo\u201d in front of the command ..Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.ssls.com\/knowledgebase\/how-to-install-an-ssl-certificate-on-apache\/\" \/>\n<meta property=\"og:site_name\" content=\"SSL Certificate Knowledgebase | SSLs.com\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/SSLsCom\" \/>\n<meta property=\"article:published_time\" content=\"2019-07-09T07:09:39+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-03-04T11:14:11+00:00\" \/>\n<meta name=\"author\" content=\"sslbizdev\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@SSLscom\" \/>\n<meta name=\"twitter:site\" content=\"@SSLscom\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"sslbizdev\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.ssls.com\/knowledgebase\/how-to-install-an-ssl-certificate-on-apache\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.ssls.com\/knowledgebase\/how-to-install-an-ssl-certificate-on-apache\/\"},\"author\":{\"name\":\"sslbizdev\",\"@id\":\"https:\/\/www.ssls.com\/knowledgebase\/#\/schema\/person\/7e29a188929740c7a59d9a1c15c18806\"},\"headline\":\"How to install an SSL Certificate on Apache\",\"datePublished\":\"2019-07-09T07:09:39+00:00\",\"dateModified\":\"2024-03-04T11:14:11+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.ssls.com\/knowledgebase\/how-to-install-an-ssl-certificate-on-apache\/\"},\"wordCount\":699,\"publisher\":{\"@id\":\"https:\/\/www.ssls.com\/knowledgebase\/#organization\"},\"articleSection\":[\"SSL Installation instructions\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.ssls.com\/knowledgebase\/how-to-install-an-ssl-certificate-on-apache\/\",\"url\":\"https:\/\/www.ssls.com\/knowledgebase\/how-to-install-an-ssl-certificate-on-apache\/\",\"name\":\"How to install an SSL Certificate on Apache \u2013 HelpDesk | SSLs.com\",\"isPartOf\":{\"@id\":\"https:\/\/www.ssls.com\/knowledgebase\/#website\"},\"datePublished\":\"2019-07-09T07:09:39+00:00\",\"dateModified\":\"2024-03-04T11:14:11+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.ssls.com\/knowledgebase\/how-to-install-an-ssl-certificate-on-apache\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.ssls.com\/knowledgebase\/how-to-install-an-ssl-certificate-on-apache\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.ssls.com\/knowledgebase\/how-to-install-an-ssl-certificate-on-apache\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.ssls.com\/knowledgebase\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to install an SSL Certificate on Apache\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.ssls.com\/knowledgebase\/#website\",\"url\":\"https:\/\/www.ssls.com\/knowledgebase\/\",\"name\":\"SSL Certificate Knowledgebase | SSLs.com\",\"description\":\"SSL Knowledgebase | SSLs.com\",\"publisher\":{\"@id\":\"https:\/\/www.ssls.com\/knowledgebase\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.ssls.com\/knowledgebase\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.ssls.com\/knowledgebase\/#organization\",\"name\":\"SSLs.com\",\"url\":\"https:\/\/www.ssls.com\/knowledgebase\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.ssls.com\/knowledgebase\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.ssls.com\/knowledgebase\/wp-content\/uploads\/2019\/07\/8WCg7Uph_400x400-1.png\",\"contentUrl\":\"https:\/\/www.ssls.com\/knowledgebase\/wp-content\/uploads\/2019\/07\/8WCg7Uph_400x400-1.png\",\"width\":400,\"height\":400,\"caption\":\"SSLs.com\"},\"image\":{\"@id\":\"https:\/\/www.ssls.com\/knowledgebase\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/SSLsCom\",\"https:\/\/x.com\/SSLscom\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.ssls.com\/knowledgebase\/#\/schema\/person\/7e29a188929740c7a59d9a1c15c18806\",\"name\":\"sslbizdev\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/b43c2e48b8cf4c353e91aa8232dac0c56e490f3f1eff58a7652c7d9a866e3f66?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/b43c2e48b8cf4c353e91aa8232dac0c56e490f3f1eff58a7652c7d9a866e3f66?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/b43c2e48b8cf4c353e91aa8232dac0c56e490f3f1eff58a7652c7d9a866e3f66?s=96&d=mm&r=g\",\"caption\":\"sslbizdev\"},\"url\":\"https:\/\/www.ssls.com\/knowledgebase\/author\/sslbizdev\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to install an SSL Certificate on Apache \u2013 HelpDesk | SSLs.com","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:\/\/www.ssls.com\/knowledgebase\/how-to-install-an-ssl-certificate-on-apache\/","og_locale":"en_US","og_type":"article","og_title":"How to install an SSL Certificate on Apache \u2013 HelpDesk | SSLs.com","og_description":"Take the stress out of SSL installation and let our tech experts take care of it! After your Certificate is issued by the Certificate Authority, you\u2019re ready to begin installation on your Apache server. Note: Sometimes, the \u201cPermission Denied\u201d error may occur when running the commands. We suggest adding \u201csudo\u201d in front of the command ..Read more","og_url":"https:\/\/www.ssls.com\/knowledgebase\/how-to-install-an-ssl-certificate-on-apache\/","og_site_name":"SSL Certificate Knowledgebase | SSLs.com","article_publisher":"https:\/\/www.facebook.com\/SSLsCom","article_published_time":"2019-07-09T07:09:39+00:00","article_modified_time":"2024-03-04T11:14:11+00:00","author":"sslbizdev","twitter_card":"summary_large_image","twitter_creator":"@SSLscom","twitter_site":"@SSLscom","twitter_misc":{"Written by":"sslbizdev","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.ssls.com\/knowledgebase\/how-to-install-an-ssl-certificate-on-apache\/#article","isPartOf":{"@id":"https:\/\/www.ssls.com\/knowledgebase\/how-to-install-an-ssl-certificate-on-apache\/"},"author":{"name":"sslbizdev","@id":"https:\/\/www.ssls.com\/knowledgebase\/#\/schema\/person\/7e29a188929740c7a59d9a1c15c18806"},"headline":"How to install an SSL Certificate on Apache","datePublished":"2019-07-09T07:09:39+00:00","dateModified":"2024-03-04T11:14:11+00:00","mainEntityOfPage":{"@id":"https:\/\/www.ssls.com\/knowledgebase\/how-to-install-an-ssl-certificate-on-apache\/"},"wordCount":699,"publisher":{"@id":"https:\/\/www.ssls.com\/knowledgebase\/#organization"},"articleSection":["SSL Installation instructions"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.ssls.com\/knowledgebase\/how-to-install-an-ssl-certificate-on-apache\/","url":"https:\/\/www.ssls.com\/knowledgebase\/how-to-install-an-ssl-certificate-on-apache\/","name":"How to install an SSL Certificate on Apache \u2013 HelpDesk | SSLs.com","isPartOf":{"@id":"https:\/\/www.ssls.com\/knowledgebase\/#website"},"datePublished":"2019-07-09T07:09:39+00:00","dateModified":"2024-03-04T11:14:11+00:00","breadcrumb":{"@id":"https:\/\/www.ssls.com\/knowledgebase\/how-to-install-an-ssl-certificate-on-apache\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.ssls.com\/knowledgebase\/how-to-install-an-ssl-certificate-on-apache\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.ssls.com\/knowledgebase\/how-to-install-an-ssl-certificate-on-apache\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.ssls.com\/knowledgebase\/"},{"@type":"ListItem","position":2,"name":"How to install an SSL Certificate on Apache"}]},{"@type":"WebSite","@id":"https:\/\/www.ssls.com\/knowledgebase\/#website","url":"https:\/\/www.ssls.com\/knowledgebase\/","name":"SSL Certificate Knowledgebase | SSLs.com","description":"SSL Knowledgebase | SSLs.com","publisher":{"@id":"https:\/\/www.ssls.com\/knowledgebase\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.ssls.com\/knowledgebase\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.ssls.com\/knowledgebase\/#organization","name":"SSLs.com","url":"https:\/\/www.ssls.com\/knowledgebase\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.ssls.com\/knowledgebase\/#\/schema\/logo\/image\/","url":"https:\/\/www.ssls.com\/knowledgebase\/wp-content\/uploads\/2019\/07\/8WCg7Uph_400x400-1.png","contentUrl":"https:\/\/www.ssls.com\/knowledgebase\/wp-content\/uploads\/2019\/07\/8WCg7Uph_400x400-1.png","width":400,"height":400,"caption":"SSLs.com"},"image":{"@id":"https:\/\/www.ssls.com\/knowledgebase\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/SSLsCom","https:\/\/x.com\/SSLscom"]},{"@type":"Person","@id":"https:\/\/www.ssls.com\/knowledgebase\/#\/schema\/person\/7e29a188929740c7a59d9a1c15c18806","name":"sslbizdev","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/b43c2e48b8cf4c353e91aa8232dac0c56e490f3f1eff58a7652c7d9a866e3f66?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/b43c2e48b8cf4c353e91aa8232dac0c56e490f3f1eff58a7652c7d9a866e3f66?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b43c2e48b8cf4c353e91aa8232dac0c56e490f3f1eff58a7652c7d9a866e3f66?s=96&d=mm&r=g","caption":"sslbizdev"},"url":"https:\/\/www.ssls.com\/knowledgebase\/author\/sslbizdev\/"}]}},"publishpress_future_action":{"enabled":false,"date":"2026-04-26 03:00:36","action":"change-status","newStatus":"draft","terms":[],"taxonomy":"category","extraData":[]},"publishpress_future_workflow_manual_trigger":{"enabledWorkflows":[]},"_links":{"self":[{"href":"https:\/\/www.ssls.com\/knowledgebase\/wp-json\/wp\/v2\/posts\/75","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.ssls.com\/knowledgebase\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.ssls.com\/knowledgebase\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.ssls.com\/knowledgebase\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.ssls.com\/knowledgebase\/wp-json\/wp\/v2\/comments?post=75"}],"version-history":[{"count":8,"href":"https:\/\/www.ssls.com\/knowledgebase\/wp-json\/wp\/v2\/posts\/75\/revisions"}],"predecessor-version":[{"id":7771,"href":"https:\/\/www.ssls.com\/knowledgebase\/wp-json\/wp\/v2\/posts\/75\/revisions\/7771"}],"wp:attachment":[{"href":"https:\/\/www.ssls.com\/knowledgebase\/wp-json\/wp\/v2\/media?parent=75"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.ssls.com\/knowledgebase\/wp-json\/wp\/v2\/categories?post=75"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.ssls.com\/knowledgebase\/wp-json\/wp\/v2\/tags?post=75"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}