{"id":57,"date":"2013-10-07T21:38:44","date_gmt":"2013-10-08T05:38:44","guid":{"rendered":"https:\/\/cheapsslsecurity.com\/blog\/?p=57"},"modified":"2021-02-04T23:02:05","modified_gmt":"2021-02-05T07:02:05","slug":"easy-ssl-certificate-installation-guide-for-apache-server-2","status":"publish","type":"post","link":"https:\/\/cheapsslsecurity.com\/blog\/easy-ssl-certificate-installation-guide-for-apache-server-2\/","title":{"rendered":"Easy SSL Certificate Installation Guide for Apache Server 2"},"content":{"rendered":"<h2 style=\"text-align: justify;\">Quick tips to Install SSL Certificate on Apache Server 2<\/h2>\n<p style=\"text-align: justify;\">The Apache Foundation released its new version (Version 2) in 2002 following the overwhelming success of its first version. Version 2 mostly focused on further modularization of the development of the Apache core, but there were also several improvements including, Unix threading, IP version 6 support and most important of it all, it gave better support for Non-Unix platforms like Microsoft Windows.<\/p>\n<p style=\"text-align: justify;\">These powerful improvements have made Apache web server a number one choice to host over 100 million websites and web applications on the internet.<\/p>\n<p><img decoding=\"async\" class=\"aligncenter wp-image-580 size-full\" src=\"https:\/\/cheapsslsecurity.com\/blog\/wp-content\/uploads\/2013\/10\/apache-web-server-2-image.jpg\" alt=\"apache web server 2 image\" width=\"330\" height=\"153\" srcset=\"https:\/\/cheapsslsecurity.com\/blog\/wp-content\/uploads\/2013\/10\/apache-web-server-2-image.jpg 330w, https:\/\/cheapsslsecurity.com\/blog\/wp-content\/uploads\/2013\/10\/apache-web-server-2-image-300x139.jpg 300w\" sizes=\"(max-width: 330px) 100vw, 330px\" \/><\/p>\n<p>If you have Apache 2.x installed already, then you&#8217;re good to go as you don&#8217;t need anything extra installed.<\/p>\n<p>If you haven&#8217;t installed it, then you can easily do so with our step-by-step guide:<\/p>\n<pre>earth:~# apt-get install apache2\nReading Package Lists... Done\nBuilding Dependency Tree... Done\nThe following extra packages will be installed:\napache2-common apache2-mpm-worker apache2-utils cheapsslsecurityssl-cert\n<strong>Suggested packages:<\/strong>\napache2-doc ca-certificates\nThe following NEW packages will be installed:\napache2 apache2-common apache2-mpm-worker apache2-utils cheapsslsecurityssl-cert\n0 upgraded, 6 newly installed, 0 to remove and 0 not upgraded.\nNeed to get 2040kB of archives.\nAfter unpacking 6218kB of additional disk space will be used.\nDo you want to continue? [Y\/n]<\/pre>\n<h2 style=\"text-align: justify;\"><b>Once the server is installed you need to do three things to get a working SSL setup:<\/b><\/h2>\n<ol>\n<li style=\"text-align: justify;\">Generate, or import a certificate<\/li>\n<li style=\"text-align: justify;\">Enable Apache\u2019s SSL support<\/li>\n<li style=\"text-align: justify;\">Configure your SSL options<\/li>\n<\/ol>\n<h2 style=\"text-align: justify;\"><b>Generating a Certificate<\/b><\/h2>\n<p style=\"text-align: justify;\"><b><\/b>Generation of a certificate from scratch will protect the traffic exchanged between clients and your server; however, it will be signed by an untrustworthy certificate authority which will generate warnings.<\/p>\n<p style=\"text-align: justify;\">Importing a paid and &#8220;trusted&#8221; certificate will avoid this problem, but that is beyond the scope of this simple introduction.<\/p>\n<p>Generating SSL Certificate for Apache2 may be accomplished using the apache2-ssl-certificate script. This will create an interactive questionnaire followed by proper generation of the certificate file.<\/p>\n<h2><b>Illustration of the session:<\/b><\/h2>\n<pre>earth:~# apache2-ssl-certificate\ncreating selfsigned certificate\nreplace it with one signed by a certification authority (CA)\nenter your ServerName at the Common Name prompt\nIf you want your certificate to expire after x days call this programm\nwith -days x<\/pre>\n<pre>Generating a 1024 bit RSA private key\n............++++++\n..........................++++++\nwriting new private key to '\/etc\/apache2\/ssl\/apache.pem'\n-----<\/pre>\n<p>Here you would be asked to enter information that will be incorporated into your certificate request.<\/p>\n<p>What you are about to enter is called a Distinguished Name or a DN.<\/p>\n<p>There are quite a few fields to fill up, but you can leave some of them blank. For some fields, there will be a default value,<\/p>\n<p>If you enter &#8216;.&#8217;, the field will be left blank.<\/p>\n<p>&#8212;&#8211;<\/p>\n<pre>Country Name (2 letter code) [GB]:\nState or Province Name (full name) [Some-State]: Scotland\nLocality Name (eg, city) []: Edinburgh\nOrganization Name (eg, company; recommended) []: eThan Hunt\nOrganizational Unit Name (eg, section) []:\nserver name (eg. ssl.domain.tld; required!!!) []: eThan\nEmail Address []: ethan@domain.com<\/pre>\n<h2><b>Enabling SSL Support<\/b><\/h2>\n<p style=\"text-align: justify;\">To use SSL facilities of Apache2 you must enable the module mod_ssl, this can be achieved using the helper tool a2enmod<\/p>\n<h2><b>As root run:<\/b><\/h2>\n<pre>earth:~# a2enmod ssl\nModule ssl installed; run \/etc\/init.d\/apache2 force-reload to enable.<\/pre>\n<p>Once this is done you&#8217;ll have Apache setup to accept SSL connections, but the server will still only be listening for incoming HTTP requests on port 80 &#8211; and not SSL connections on port 443. To fix this you must add a line to the file \/etc\/apache2\/ports.conf:<\/p>\n<pre>Listen 443<\/pre>\n<p><span style=\"text-align: justify;\">With these two steps out of the way you now have an Apache setup which will listen for and accept SSL connections. The next step is to modify your virtual host to use it.<\/span><\/p>\n<h2><b>Configuring your SSL Hosts<\/b><\/h2>\n<p>With a certificate setup and the server updated to load and listen for incoming SSL connections, you&#8217;re almost done. The final step would be when your virtual hosts or main host accepts SSL options.<\/p>\n<p>I use virtual hosts on my machine which means adding a couple of options to each one I wish to use the SSL for:<\/p>\n<pre>SSLEngine on\nSSLCertificateFile \/etc\/apache2\/ssl\/apache.pem<\/pre>\n<p>For reference here is a complete example which should be easy to modify\/understand:<\/p>\n<pre>NameVirtualHost *:443\nNameVirtualHost *:80\n&lt;VirtualHost *:80&gt;\nServerNameeThan.my.flat\nDocumentRoot \/var\/www\/\nErrorLog \/var\/log\/apache2\/error.log\nCustomLog \/var\/log\/apache2\/access.log combined\n&lt;\/VirtualHost&gt;\n&lt;VirtualHost *:443&gt;\nServerNameeThan.my.flat\nDocumentRoot \/var\/www\/\nErrorLog \/var\/log\/apache2\/error.log\nCustomLog \/var\/log\/apache2\/access.log combined\nSSLEngine on\nSSLCertificateFile \/etc\/apache2\/ssl\/apache.pem\n&lt;\/VirtualHost&gt;<\/pre>\n<div class=\"graysection\">\n<h2>Buy SSL Certificates at a Cheap Price and Save 88%<\/h2>\n<p>Get an SSL certificate from world-class commercial Certificate Authorities such as Comodo, Sectigo, DigiCert, Symantec, Thawte, RapidSSL, and GeoTrust.<\/p>\n<p><a class=\"comparebtn\" href=\"https:\/\/cheapsslsecurity.com\/\">Shop for Cheap SSL Certificates<\/a><\/p>\n<\/div>\n<h2>Related Posts<\/h2>\n<ul>\n<li><a href=\"https:\/\/cheapsslsecurity.com\/blog\/install-ssl-certificate-ubuntu-server-using-apache\/\" target=\"_blank\" rel=\"noopener noreferrer\">How to Install an SSL Certificate on Ubuntu Server using Apache<\/a><\/li>\n<li><a href=\"https:\/\/cheapsslsecurity.com\/blog\/apache-server-common-ssl-errors-and-troubleshooting-guide\/\" target=\"_blank\" rel=\"noopener noreferrer\">Apache Server: Common SSL Errors and Troubleshooting Guide<\/a><\/li>\n<li><a href=\"https:\/\/cheapsslsecurity.com\/blog\/how-to-move-ssl-certificate-from-a-windows-server-to-an-apache-server\/\" target=\"_blank\" rel=\"noopener noreferrer\">How to Move or Copy an SSL Certificate from a Windows Server to an Apache Server<\/a><\/li>\n<li><a href=\"https:\/\/cheapsslsecurity.com\/blog\/how-to-move-an-ssl-certificate-from-apache-server-to-a-windows-server\/\" target=\"_blank\" rel=\"noopener noreferrer\">How to Move or Copy an SSL Certificate from an Apache Server to a Windows Server<\/a><\/li>\n<li><a href=\"https:\/\/cheapsslsecurity.com\/blog\/how-to-import-ssl-certificate-from-apache-server-to-microsoft-windows-server\/\" target=\"_blank\" rel=\"noopener noreferrer\">How to import SSL certificate from Apache server to Microsoft Windows server<\/a><\/li>\n<li><a href=\"https:\/\/cheapsslsecurity.com\/blog\/stepwise-guide-installing-wildcard-ssl-apache-web-server\/\" target=\"_blank\" rel=\"noopener noreferrer\">Step-wise Guide on Installing a Wildcard SSL on Apache Web Server<\/a><\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>Quick tips to Install SSL Certificate on Apache Server 2 The Apache Foundation released its new version (Version 2) in 2002 following the overwhelming success of its first version. Version 2 mostly focused on further modularization of the development of the Apache core, but there were also several improvements including, Unix threading, IP version 6<\/p>\n","protected":false},"author":8,"featured_media":580,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"footnotes":""},"categories":[5],"tags":[],"class_list":["post-57","post","type-post","status-publish","format-standard","has-post-thumbnail","category-ssl-pki"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Easy SSL Certificate Installation Guide for Apache Server 2<\/title>\n<meta name=\"description\" content=\"Quick and Easy SSL certificate installation guide for Apache Server 2. Now get your SSL certificate installed quickly on your Apache 2 Server.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/cheapsslsecurity.com\/blog\/easy-ssl-certificate-installation-guide-for-apache-server-2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Easy SSL Certificate Installation Guide for Apache Server 2\" \/>\n<meta property=\"og:description\" content=\"Quick and Easy SSL certificate installation guide for Apache Server 2. Now get your SSL certificate installed quickly on your Apache 2 Server.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/cheapsslsecurity.com\/blog\/easy-ssl-certificate-installation-guide-for-apache-server-2\/\" \/>\n<meta property=\"og:site_name\" content=\"Savvy Security\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/cheapsslsecurities\" \/>\n<meta property=\"article:published_time\" content=\"2013-10-08T05:38:44+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-02-05T07:02:05+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cheapsslsecurity.com\/blog\/wp-content\/uploads\/2013\/10\/apache-web-server-2-image.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"330\" \/>\n\t<meta property=\"og:image:height\" content=\"153\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Savvy Security\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@sslsecurity\" \/>\n<meta name=\"twitter:site\" content=\"@sslsecurity\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Savvy Security\" \/>\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:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/easy-ssl-certificate-installation-guide-for-apache-server-2\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/easy-ssl-certificate-installation-guide-for-apache-server-2\\\/\"},\"author\":{\"name\":\"Savvy Security\",\"@id\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/#\\\/schema\\\/person\\\/1ce9a5743b7f25b5be6e4972864b4493\"},\"headline\":\"Easy SSL Certificate Installation Guide for Apache Server 2\",\"datePublished\":\"2013-10-08T05:38:44+00:00\",\"dateModified\":\"2021-02-05T07:02:05+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/easy-ssl-certificate-installation-guide-for-apache-server-2\\\/\"},\"wordCount\":614,\"image\":{\"@id\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/easy-ssl-certificate-installation-guide-for-apache-server-2\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/wp-content\\\/uploads\\\/2013\\\/10\\\/apache-web-server-2-image.jpg\",\"articleSection\":[\"SSL &amp; PKI\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/easy-ssl-certificate-installation-guide-for-apache-server-2\\\/\",\"url\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/easy-ssl-certificate-installation-guide-for-apache-server-2\\\/\",\"name\":\"Easy SSL Certificate Installation Guide for Apache Server 2\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/easy-ssl-certificate-installation-guide-for-apache-server-2\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/easy-ssl-certificate-installation-guide-for-apache-server-2\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/wp-content\\\/uploads\\\/2013\\\/10\\\/apache-web-server-2-image.jpg\",\"datePublished\":\"2013-10-08T05:38:44+00:00\",\"dateModified\":\"2021-02-05T07:02:05+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/#\\\/schema\\\/person\\\/1ce9a5743b7f25b5be6e4972864b4493\"},\"description\":\"Quick and Easy SSL certificate installation guide for Apache Server 2. Now get your SSL certificate installed quickly on your Apache 2 Server.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/easy-ssl-certificate-installation-guide-for-apache-server-2\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/easy-ssl-certificate-installation-guide-for-apache-server-2\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/easy-ssl-certificate-installation-guide-for-apache-server-2\\\/#primaryimage\",\"url\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/wp-content\\\/uploads\\\/2013\\\/10\\\/apache-web-server-2-image.jpg\",\"contentUrl\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/wp-content\\\/uploads\\\/2013\\\/10\\\/apache-web-server-2-image.jpg\",\"width\":330,\"height\":153,\"caption\":\"apache web server 2 image\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/easy-ssl-certificate-installation-guide-for-apache-server-2\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Easy SSL Certificate Installation Guide for Apache Server 2\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/\",\"name\":\"Savvy Security\",\"description\":\"Practical cybersecurity advice\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/#\\\/schema\\\/person\\\/1ce9a5743b7f25b5be6e4972864b4493\",\"name\":\"Savvy Security\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4e5539150b16b5af1d22136f03dedda89a96babb3e9b5ceb18c2bde4e1dcba57?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4e5539150b16b5af1d22136f03dedda89a96babb3e9b5ceb18c2bde4e1dcba57?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4e5539150b16b5af1d22136f03dedda89a96babb3e9b5ceb18c2bde4e1dcba57?s=96&d=mm&r=g\",\"caption\":\"Savvy Security\"},\"description\":\"Welcome to Savvy Security, a blog focused on providing practical cybersecurity advice for website owners and small businesses. Our team brings you the latest news, best practices and tips you can use to protect your business...without a multi-million dollar budget or 24\\\/7 security teams.\",\"sameAs\":[\"blogadmin\"],\"url\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/author\\\/blogadmin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Easy SSL Certificate Installation Guide for Apache Server 2","description":"Quick and Easy SSL certificate installation guide for Apache Server 2. Now get your SSL certificate installed quickly on your Apache 2 Server.","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:\/\/cheapsslsecurity.com\/blog\/easy-ssl-certificate-installation-guide-for-apache-server-2\/","og_locale":"en_US","og_type":"article","og_title":"Easy SSL Certificate Installation Guide for Apache Server 2","og_description":"Quick and Easy SSL certificate installation guide for Apache Server 2. Now get your SSL certificate installed quickly on your Apache 2 Server.","og_url":"https:\/\/cheapsslsecurity.com\/blog\/easy-ssl-certificate-installation-guide-for-apache-server-2\/","og_site_name":"Savvy Security","article_publisher":"https:\/\/www.facebook.com\/cheapsslsecurities","article_published_time":"2013-10-08T05:38:44+00:00","article_modified_time":"2021-02-05T07:02:05+00:00","og_image":[{"width":330,"height":153,"url":"https:\/\/cheapsslsecurity.com\/blog\/wp-content\/uploads\/2013\/10\/apache-web-server-2-image.jpg","type":"image\/jpeg"}],"author":"Savvy Security","twitter_card":"summary_large_image","twitter_creator":"@sslsecurity","twitter_site":"@sslsecurity","twitter_misc":{"Written by":"Savvy Security","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/cheapsslsecurity.com\/blog\/easy-ssl-certificate-installation-guide-for-apache-server-2\/#article","isPartOf":{"@id":"https:\/\/cheapsslsecurity.com\/blog\/easy-ssl-certificate-installation-guide-for-apache-server-2\/"},"author":{"name":"Savvy Security","@id":"https:\/\/cheapsslsecurity.com\/blog\/#\/schema\/person\/1ce9a5743b7f25b5be6e4972864b4493"},"headline":"Easy SSL Certificate Installation Guide for Apache Server 2","datePublished":"2013-10-08T05:38:44+00:00","dateModified":"2021-02-05T07:02:05+00:00","mainEntityOfPage":{"@id":"https:\/\/cheapsslsecurity.com\/blog\/easy-ssl-certificate-installation-guide-for-apache-server-2\/"},"wordCount":614,"image":{"@id":"https:\/\/cheapsslsecurity.com\/blog\/easy-ssl-certificate-installation-guide-for-apache-server-2\/#primaryimage"},"thumbnailUrl":"https:\/\/cheapsslsecurity.com\/blog\/wp-content\/uploads\/2013\/10\/apache-web-server-2-image.jpg","articleSection":["SSL &amp; PKI"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/cheapsslsecurity.com\/blog\/easy-ssl-certificate-installation-guide-for-apache-server-2\/","url":"https:\/\/cheapsslsecurity.com\/blog\/easy-ssl-certificate-installation-guide-for-apache-server-2\/","name":"Easy SSL Certificate Installation Guide for Apache Server 2","isPartOf":{"@id":"https:\/\/cheapsslsecurity.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/cheapsslsecurity.com\/blog\/easy-ssl-certificate-installation-guide-for-apache-server-2\/#primaryimage"},"image":{"@id":"https:\/\/cheapsslsecurity.com\/blog\/easy-ssl-certificate-installation-guide-for-apache-server-2\/#primaryimage"},"thumbnailUrl":"https:\/\/cheapsslsecurity.com\/blog\/wp-content\/uploads\/2013\/10\/apache-web-server-2-image.jpg","datePublished":"2013-10-08T05:38:44+00:00","dateModified":"2021-02-05T07:02:05+00:00","author":{"@id":"https:\/\/cheapsslsecurity.com\/blog\/#\/schema\/person\/1ce9a5743b7f25b5be6e4972864b4493"},"description":"Quick and Easy SSL certificate installation guide for Apache Server 2. Now get your SSL certificate installed quickly on your Apache 2 Server.","breadcrumb":{"@id":"https:\/\/cheapsslsecurity.com\/blog\/easy-ssl-certificate-installation-guide-for-apache-server-2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/cheapsslsecurity.com\/blog\/easy-ssl-certificate-installation-guide-for-apache-server-2\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cheapsslsecurity.com\/blog\/easy-ssl-certificate-installation-guide-for-apache-server-2\/#primaryimage","url":"https:\/\/cheapsslsecurity.com\/blog\/wp-content\/uploads\/2013\/10\/apache-web-server-2-image.jpg","contentUrl":"https:\/\/cheapsslsecurity.com\/blog\/wp-content\/uploads\/2013\/10\/apache-web-server-2-image.jpg","width":330,"height":153,"caption":"apache web server 2 image"},{"@type":"BreadcrumbList","@id":"https:\/\/cheapsslsecurity.com\/blog\/easy-ssl-certificate-installation-guide-for-apache-server-2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/cheapsslsecurity.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Easy SSL Certificate Installation Guide for Apache Server 2"}]},{"@type":"WebSite","@id":"https:\/\/cheapsslsecurity.com\/blog\/#website","url":"https:\/\/cheapsslsecurity.com\/blog\/","name":"Savvy Security","description":"Practical cybersecurity advice","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/cheapsslsecurity.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/cheapsslsecurity.com\/blog\/#\/schema\/person\/1ce9a5743b7f25b5be6e4972864b4493","name":"Savvy Security","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/4e5539150b16b5af1d22136f03dedda89a96babb3e9b5ceb18c2bde4e1dcba57?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/4e5539150b16b5af1d22136f03dedda89a96babb3e9b5ceb18c2bde4e1dcba57?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/4e5539150b16b5af1d22136f03dedda89a96babb3e9b5ceb18c2bde4e1dcba57?s=96&d=mm&r=g","caption":"Savvy Security"},"description":"Welcome to Savvy Security, a blog focused on providing practical cybersecurity advice for website owners and small businesses. Our team brings you the latest news, best practices and tips you can use to protect your business...without a multi-million dollar budget or 24\/7 security teams.","sameAs":["blogadmin"],"url":"https:\/\/cheapsslsecurity.com\/blog\/author\/blogadmin\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/cheapsslsecurity.com\/blog\/wp-json\/wp\/v2\/posts\/57","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/cheapsslsecurity.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/cheapsslsecurity.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/cheapsslsecurity.com\/blog\/wp-json\/wp\/v2\/users\/8"}],"replies":[{"embeddable":true,"href":"https:\/\/cheapsslsecurity.com\/blog\/wp-json\/wp\/v2\/comments?post=57"}],"version-history":[{"count":0,"href":"https:\/\/cheapsslsecurity.com\/blog\/wp-json\/wp\/v2\/posts\/57\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/cheapsslsecurity.com\/blog\/wp-json\/wp\/v2\/media\/580"}],"wp:attachment":[{"href":"https:\/\/cheapsslsecurity.com\/blog\/wp-json\/wp\/v2\/media?parent=57"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/cheapsslsecurity.com\/blog\/wp-json\/wp\/v2\/categories?post=57"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/cheapsslsecurity.com\/blog\/wp-json\/wp\/v2\/tags?post=57"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}