{"id":1024,"date":"2013-05-04T05:05:39","date_gmt":"2013-05-04T11:05:39","guid":{"rendered":"http:\/\/blog.supportpro.com\/?p=1024"},"modified":"2025-04-28T05:09:56","modified_gmt":"2025-04-28T11:09:56","slug":"multiple-ssl-certificates-on-a-single-ip-using-apache","status":"publish","type":"post","link":"https:\/\/www.supportpro.com\/blog\/multiple-ssl-certificates-on-a-single-ip-using-apache\/","title":{"rendered":"Multiple SSL Certificates on a Single IP Using Apache"},"content":{"rendered":"<p>SNI ( Server Name Identification) allows you to host <a href=\"https:\/\/www.supportpro.com\/blog\/multiple-ssl-certificates-on-a-single-ip-using-nginx\/\">multiple SSL certificates on a single IP<\/a> address. Although, hosting several sites on a single virtual private server is possible with the use of virtual hosts, providing separate SSL certificates for each site traditionally required separate IP addresses. The process has now been simplified through the use of Server Name Indication (SNI), which sends a site visitor the certificate that matches the requested server name.<\/p>\n<p>Requirements<\/p>\n<p>1. Domain names should be registered in order to serve the certificates by SNI.<\/p>\n<p>2. Root Privileges to the server.<\/p>\n<p>3. Apache should already be installed and running<\/p>\n<p><!--more--><\/p>\n<p>Set up<\/p>\n<p>1. Create Your SSL Certificates<\/p>\n<p>For easy understanding, I will be working to create a server that hosts both example.com and example.org.<\/p>\n<p>The SSL certificate has 2 parts main parts: the certificate itself and the public key. We should create a directory for each virtual hosts SSL certificate.<\/p>\n<blockquote><p># mkdir -p \/etc\/apache2\/ssl\/example.com<br \/>\n# mkdir -p \/etc\/apache2\/ssl\/example.org<\/p><\/blockquote>\n<p>2. Activate the SSL Module<\/p>\n<p>The next step is to enable SSL.<\/p>\n<blockquote><p># sudo a2enmod ssl<\/p><\/blockquote>\n<p>Restart apache after that :<\/p>\n<blockquote><p># sudo service apache2 restart<\/p><\/blockquote>\n<p>3. Create a Self Signed SSL Certificate<\/p>\n<p>When we request a new certificate, we can specify how long the certificate should remain valid by changing the 365 to the number of days we prefer. As it stands this certificate will expire after one year.<\/p>\n<blockquote><p># sudo openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout \/etc\/apache2\/ssl\/example.com\/apache.key out \/etc\/apache2\/ssl\/example.com\/apache.crt<\/p><\/blockquote>\n<p>we have now created both the self-signed SSL certificate and the server key that protects it, and placing both of them into the new directory.<\/p>\n<p>This command will prompt terminal to display a list of fields that need to be filled in.<\/p>\n<p>For the second (example.org) domain:<\/p>\n<blockquote><p># sudo openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout \/etc\/apache2\/ssl\/example.org\/apache.keyout \/etc\/apache2\/ssl\/example.org\/apache.crt<\/p><\/blockquote>\n<p>4. Create the Virtual Hosts<\/p>\n<p>Once you have the certificates saved and ready, you can add in your information in the virtual host files. we can create two virtual host files to store virtual host information in separate files, copying the configuration from the default virtual host file.<\/p>\n<blockquote><p># sudo nano \/etc\/apache2\/sites-available\/example.com<br \/>\n# sudo nano \/etc\/apache2\/sites-available\/example.org<\/p><\/blockquote>\n<p>Open up each file and paste in the configuration below:<\/p>\n<p>The default configuration files offer a variety of useful directives and additional configuration options that you can add to the virtual host. However, the following information will provide the server everything it needs to set up multiple SSL certificates on one IP address.<\/p>\n<blockquote><p>&lt;VirtualHost *:80&gt;<br \/>\nServerAdmin webmaster@localhost<br \/>\nServerName example.com<br \/>\nDocumentRoot \/var\/www<\/p>\n<p>&lt;\/VirtualHost&gt;<\/p>\n<p>&lt;IfModule mod_ssl.c&gt;<br \/>\n&lt;VirtualHost *:443&gt;<\/p>\n<p>ServerAdmin webmaster@localhost<br \/>\nServerName example.com<br \/>\nDocumentRoot \/var\/www<\/p>\n<p># SSL Engine Switch:<br \/>\n# Enable\/Disable SSL for this virtual host.<br \/>\nSSLEngine on<\/p>\n<p># A self-signed (snakeoil) certificate can be created by installing<br \/>\n# the ssl-cert package. See<br \/>\n# \/usr\/share\/doc\/apache2.2-common\/README.Debian.gz for more info.<br \/>\n# If both key and certificate are stored in the same file, only the<br \/>\n# SSLCertificateFile directive is needed.<br \/>\nSSLCertificateFile \/etc\/apache2\/ssl\/example.com\/apache.crt<br \/>\nSSLCertificateKeyFile \/etc\/apache2\/ssl\/example.com\/apache.key<br \/>\n&lt;\/VirtualHost&gt;<\/p>\n<p>&lt;\/IfModule&gt;<\/p><\/blockquote>\n<p>5. Edit the ports.conf file<\/p>\n<p>The final step required to make sure that multiple certificates work on one VPS is to tell the server to listen on port 443.<\/p>\n<blockquote><p># sudo nano \/etc\/apache2\/ports.conf<\/p><\/blockquote>\n<p>Add the following lines to the apache ports configuration file:<\/p>\n<blockquote><p>NameVirtualHost *:80<br \/>\nNameVirtualHost *:443<\/p>\n<p>Listen 80<\/p>\n<p>&lt;IfModule mod_ssl.c&gt;<br \/>\n# If you add NameVirtualHost *:443 here, you will also have to change<br \/>\n# the VirtualHost statement in \/etc\/apache2\/sites-available\/default-ssl<br \/>\n# to<br \/>\n# Server Name Indication for SSL named virtual hosts is currently not<br \/>\n# supported by MSIE on Windows XP.<br \/>\nListen 443<br \/>\n&lt;\/IfModule&gt;<\/p>\n<p>&lt;IfModule mod_gnutls.c&gt;<br \/>\nListen 443<br \/>\n&lt;\/IfModule&gt;<\/p><\/blockquote>\n<p>6. Activate the Virtual Hosts<\/p>\n<blockquote><p># sudo a2ensite example.com<br \/>\n# sudo a2ensite example.org<\/p><\/blockquote>\n<p>7. Restart Apache<\/p>\n<blockquote><p># sudo service apache2 restart<\/p><\/blockquote>\n<p>You should now be able to access both sites, each with its own domain name and SSL certificate.<\/p>\n<p>You can view the sites both with and without the signed SSL certificates by typing in just the domain or the domain with the https prefix.<\/p>\n<p>If you require help, <a href=\"https:\/\/www.supportpro.com\/requestquote.php\">contact SupportPRO Server Admin<\/a><\/p>\n<p style=\"text-align: center;\"><!--HubSpot Call-to-Action Code --><span id=\"hs-cta-wrapper-9d590242-d641-4383-94b4-8cfd62f0af6b\" class=\"hs-cta-wrapper\"><span id=\"hs-cta-9d590242-d641-4383-94b4-8cfd62f0af6b\" class=\"hs-cta-node hs-cta-9d590242-d641-4383-94b4-8cfd62f0af6b\"><!-- [if lte IE 8]><\/p>\n\n\n\n\n\n<div id=\"hs-cta-ie-element\"><\/div>\n\n\n<![endif]--><a href=\"https:\/\/www.supportpro.com\/requestquote.php\"><img decoding=\"async\" id=\"hs-cta-img-9d590242-d641-4383-94b4-8cfd62f0af6b\" class=\"hs-cta-img\" style=\"border-width: 0px;\" src=\"https:\/\/no-cache.hubspot.com\/cta\/default\/2725694\/9d590242-d641-4383-94b4-8cfd62f0af6b.png\" alt=\"Server not running properly? Get A FREE Server Checkup By Expert Server Admins - $125 Value\" \/><\/a><\/span><script charset=\"utf-8\" src=\"https:\/\/js.hscta.net\/cta\/current.js\"><\/script><script type=\"text\/javascript\"> hbspt.cta.load(2725694, '9d590242-d641-4383-94b4-8cfd62f0af6b', {}); <\/script><\/span><!-- end HubSpot Call-to-Action Code --><\/p>\n","protected":false},"excerpt":{"rendered":"<p>SNI ( Server Name Identification) allows you to host multiple SSL certificates on a single IP address. Although, hosting several sites on a single virtual private server is possible with&hellip;<\/p>\n","protected":false},"author":4,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_lmt_disableupdate":"","_lmt_disable":"","footnotes":""},"categories":[1],"tags":[],"class_list":["post-1024","post","type-post","status-publish","format-standard","hentry","category-miscellaneous"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO Pro 4.9.9 - aioseo.com -->\n\t<meta name=\"description\" content=\"SNI allows hosting multiple SSL certificates on a single IP address. In this process, SNI sends a site visitor the certificate that matches the requested server name.\" \/>\n\t<meta name=\"robots\" content=\"max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n\t<meta name=\"author\" content=\"SupportPRO Admin\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.supportpro.com\/blog\/multiple-ssl-certificates-on-a-single-ip-using-apache\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO Pro (AIOSEO) 4.9.9\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Server Management Tips | SupportPRO Blog\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Multiple SSL Certificates on a Single IP Using Apache | Server Management Tips\" \/>\n\t\t<meta property=\"og:description\" content=\"SNI allows hosting multiple SSL certificates on a single IP address. In this process, SNI sends a site visitor the certificate that matches the requested server name.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.supportpro.com\/blog\/multiple-ssl-certificates-on-a-single-ip-using-apache\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2013-05-04T11:05:39+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2025-04-28T11:09:56+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Multiple SSL Certificates on a Single IP Using Apache | Server Management Tips\" \/>\n\t\t<meta name=\"twitter:description\" content=\"SNI allows hosting multiple SSL certificates on a single IP address. In this process, SNI sends a site visitor the certificate that matches the requested server name.\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/multiple-ssl-certificates-on-a-single-ip-using-apache\\\/#article\",\"name\":\"Multiple SSL Certificates on a Single IP Using Apache | Server Management Tips\",\"headline\":\"Multiple SSL Certificates on a Single IP Using Apache\",\"author\":{\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/author\\\/managementadmin\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/no-cache.hubspot.com\\\/cta\\\/default\\\/2725694\\\/9d590242-d641-4383-94b4-8cfd62f0af6b.png\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/multiple-ssl-certificates-on-a-single-ip-using-apache\\\/#articleImage\"},\"datePublished\":\"2013-05-04T05:05:39-06:00\",\"dateModified\":\"2025-04-28T05:09:56-06:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/multiple-ssl-certificates-on-a-single-ip-using-apache\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/multiple-ssl-certificates-on-a-single-ip-using-apache\\\/#webpage\"},\"articleSection\":\"Miscellaneous\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/multiple-ssl-certificates-on-a-single-ip-using-apache\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.supportpro.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/category\\\/miscellaneous\\\/#listItem\",\"name\":\"Miscellaneous\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/category\\\/miscellaneous\\\/#listItem\",\"position\":2,\"name\":\"Miscellaneous\",\"item\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/category\\\/miscellaneous\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/multiple-ssl-certificates-on-a-single-ip-using-apache\\\/#listItem\",\"name\":\"Multiple SSL Certificates on a Single IP Using Apache\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/multiple-ssl-certificates-on-a-single-ip-using-apache\\\/#listItem\",\"position\":3,\"name\":\"Multiple SSL Certificates on a Single IP Using Apache\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/category\\\/miscellaneous\\\/#listItem\",\"name\":\"Miscellaneous\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/#organization\",\"name\":\"SupportPRO\",\"description\":\"SupportPRO Blog\",\"url\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/\",\"telephone\":\"+18476076123\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/author\\\/managementadmin\\\/#author\",\"url\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/author\\\/managementadmin\\\/\",\"name\":\"SupportPRO Admin\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/multiple-ssl-certificates-on-a-single-ip-using-apache\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/13d2f63048d631e03a432375448be5eb7861069df4fef10f0cb1c7b36554c225?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"SupportPRO Admin\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/multiple-ssl-certificates-on-a-single-ip-using-apache\\\/#webpage\",\"url\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/multiple-ssl-certificates-on-a-single-ip-using-apache\\\/\",\"name\":\"Multiple SSL Certificates on a Single IP Using Apache | Server Management Tips\",\"description\":\"SNI allows hosting multiple SSL certificates on a single IP address. In this process, SNI sends a site visitor the certificate that matches the requested server name.\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/multiple-ssl-certificates-on-a-single-ip-using-apache\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/author\\\/managementadmin\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/author\\\/managementadmin\\\/#author\"},\"datePublished\":\"2013-05-04T05:05:39-06:00\",\"dateModified\":\"2025-04-28T05:09:56-06:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/\",\"name\":\"Server Management Tips\",\"description\":\"SupportPRO Blog\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO Pro -->\r\n\t\t<title>Multiple SSL Certificates on a Single IP Using Apache | Server Management Tips<\/title>\n\n","aioseo_head_json":{"title":"Multiple SSL Certificates on a Single IP Using Apache | Server Management Tips","description":"SNI allows hosting multiple SSL certificates on a single IP address. In this process, SNI sends a site visitor the certificate that matches the requested server name.","canonical_url":"https:\/\/www.supportpro.com\/blog\/multiple-ssl-certificates-on-a-single-ip-using-apache\/","robots":"max-snippet:-1, max-image-preview:large, max-video-preview:-1","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.supportpro.com\/blog\/multiple-ssl-certificates-on-a-single-ip-using-apache\/#article","name":"Multiple SSL Certificates on a Single IP Using Apache | Server Management Tips","headline":"Multiple SSL Certificates on a Single IP Using Apache","author":{"@id":"https:\/\/www.supportpro.com\/blog\/author\/managementadmin\/#author"},"publisher":{"@id":"https:\/\/www.supportpro.com\/blog\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/no-cache.hubspot.com\/cta\/default\/2725694\/9d590242-d641-4383-94b4-8cfd62f0af6b.png","@id":"https:\/\/www.supportpro.com\/blog\/multiple-ssl-certificates-on-a-single-ip-using-apache\/#articleImage"},"datePublished":"2013-05-04T05:05:39-06:00","dateModified":"2025-04-28T05:09:56-06:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/www.supportpro.com\/blog\/multiple-ssl-certificates-on-a-single-ip-using-apache\/#webpage"},"isPartOf":{"@id":"https:\/\/www.supportpro.com\/blog\/multiple-ssl-certificates-on-a-single-ip-using-apache\/#webpage"},"articleSection":"Miscellaneous"},{"@type":"BreadcrumbList","@id":"https:\/\/www.supportpro.com\/blog\/multiple-ssl-certificates-on-a-single-ip-using-apache\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.supportpro.com\/blog#listItem","position":1,"name":"Home","item":"https:\/\/www.supportpro.com\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/www.supportpro.com\/blog\/category\/miscellaneous\/#listItem","name":"Miscellaneous"}},{"@type":"ListItem","@id":"https:\/\/www.supportpro.com\/blog\/category\/miscellaneous\/#listItem","position":2,"name":"Miscellaneous","item":"https:\/\/www.supportpro.com\/blog\/category\/miscellaneous\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.supportpro.com\/blog\/multiple-ssl-certificates-on-a-single-ip-using-apache\/#listItem","name":"Multiple SSL Certificates on a Single IP Using Apache"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.supportpro.com\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.supportpro.com\/blog\/multiple-ssl-certificates-on-a-single-ip-using-apache\/#listItem","position":3,"name":"Multiple SSL Certificates on a Single IP Using Apache","previousItem":{"@type":"ListItem","@id":"https:\/\/www.supportpro.com\/blog\/category\/miscellaneous\/#listItem","name":"Miscellaneous"}}]},{"@type":"Organization","@id":"https:\/\/www.supportpro.com\/blog\/#organization","name":"SupportPRO","description":"SupportPRO Blog","url":"https:\/\/www.supportpro.com\/blog\/","telephone":"+18476076123"},{"@type":"Person","@id":"https:\/\/www.supportpro.com\/blog\/author\/managementadmin\/#author","url":"https:\/\/www.supportpro.com\/blog\/author\/managementadmin\/","name":"SupportPRO Admin","image":{"@type":"ImageObject","@id":"https:\/\/www.supportpro.com\/blog\/multiple-ssl-certificates-on-a-single-ip-using-apache\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/13d2f63048d631e03a432375448be5eb7861069df4fef10f0cb1c7b36554c225?s=96&d=mm&r=g","width":96,"height":96,"caption":"SupportPRO Admin"}},{"@type":"WebPage","@id":"https:\/\/www.supportpro.com\/blog\/multiple-ssl-certificates-on-a-single-ip-using-apache\/#webpage","url":"https:\/\/www.supportpro.com\/blog\/multiple-ssl-certificates-on-a-single-ip-using-apache\/","name":"Multiple SSL Certificates on a Single IP Using Apache | Server Management Tips","description":"SNI allows hosting multiple SSL certificates on a single IP address. In this process, SNI sends a site visitor the certificate that matches the requested server name.","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/www.supportpro.com\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/www.supportpro.com\/blog\/multiple-ssl-certificates-on-a-single-ip-using-apache\/#breadcrumblist"},"author":{"@id":"https:\/\/www.supportpro.com\/blog\/author\/managementadmin\/#author"},"creator":{"@id":"https:\/\/www.supportpro.com\/blog\/author\/managementadmin\/#author"},"datePublished":"2013-05-04T05:05:39-06:00","dateModified":"2025-04-28T05:09:56-06:00"},{"@type":"WebSite","@id":"https:\/\/www.supportpro.com\/blog\/#website","url":"https:\/\/www.supportpro.com\/blog\/","name":"Server Management Tips","description":"SupportPRO Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/www.supportpro.com\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"Server Management Tips | SupportPRO Blog","og:type":"article","og:title":"Multiple SSL Certificates on a Single IP Using Apache | Server Management Tips","og:description":"SNI allows hosting multiple SSL certificates on a single IP address. In this process, SNI sends a site visitor the certificate that matches the requested server name.","og:url":"https:\/\/www.supportpro.com\/blog\/multiple-ssl-certificates-on-a-single-ip-using-apache\/","article:published_time":"2013-05-04T11:05:39+00:00","article:modified_time":"2025-04-28T11:09:56+00:00","twitter:card":"summary","twitter:title":"Multiple SSL Certificates on a Single IP Using Apache | Server Management Tips","twitter:description":"SNI allows hosting multiple SSL certificates on a single IP address. In this process, SNI sends a site visitor the certificate that matches the requested server name."},"aioseo_meta_data":{"post_id":"1024","title":"Multiple SSL Certificates on a Single IP Using Apache | #site_title","description":"SNI allows hosting multiple SSL certificates on a single IP address. In this process, SNI sends a site visitor the certificate that matches the requested server name.","keywords":null,"keyphrases":{"focus":{"keyphrase":"","score":0,"analysis":{"keyphraseInTitle":{"score":0,"maxScore":9,"error":1}}},"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"seo_analyzer_scan_date":"2026-06-17 13:03:52","breadcrumb_settings":null,"limit_modified_date":false,"open_ai":"{\"title\":{\"suggestions\":[],\"usage\":0},\"description\":{\"suggestions\":[],\"usage\":0}}","ai":null,"created":"2021-12-10 16:16:49","updated":"2026-06-30 23:59:54"},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t<a href=\"https:\/\/www.supportpro.com\/blog\" title=\"Home\">Home<\/a>\n<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t<a href=\"https:\/\/www.supportpro.com\/blog\/category\/miscellaneous\/\" title=\"Miscellaneous\">Miscellaneous<\/a>\n<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\tMultiple SSL Certificates on a Single IP Using Apache\n<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/www.supportpro.com\/blog"},{"label":"Miscellaneous","link":"https:\/\/www.supportpro.com\/blog\/category\/miscellaneous\/"},{"label":"Multiple SSL Certificates on a Single IP Using Apache","link":"https:\/\/www.supportpro.com\/blog\/multiple-ssl-certificates-on-a-single-ip-using-apache\/"}],"_links":{"self":[{"href":"https:\/\/www.supportpro.com\/blog\/wp-json\/wp\/v2\/posts\/1024","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.supportpro.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.supportpro.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.supportpro.com\/blog\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/www.supportpro.com\/blog\/wp-json\/wp\/v2\/comments?post=1024"}],"version-history":[{"count":14,"href":"https:\/\/www.supportpro.com\/blog\/wp-json\/wp\/v2\/posts\/1024\/revisions"}],"predecessor-version":[{"id":14569,"href":"https:\/\/www.supportpro.com\/blog\/wp-json\/wp\/v2\/posts\/1024\/revisions\/14569"}],"wp:attachment":[{"href":"https:\/\/www.supportpro.com\/blog\/wp-json\/wp\/v2\/media?parent=1024"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.supportpro.com\/blog\/wp-json\/wp\/v2\/categories?post=1024"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.supportpro.com\/blog\/wp-json\/wp\/v2\/tags?post=1024"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}