{"id":3704,"date":"2014-06-11T14:45:51","date_gmt":"2014-06-11T19:45:51","guid":{"rendered":"https:\/\/secure.rosehosting.com\/blog\/?p=3704"},"modified":"2022-12-15T03:11:13","modified_gmt":"2022-12-15T09:11:13","slug":"how-to-set-up-multiple-ssl-certificates-on-a-centos-vps-with-apache-using-one-ip-address","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/how-to-set-up-multiple-ssl-certificates-on-a-centos-vps-with-apache-using-one-ip-address\/","title":{"rendered":"How To Set Up Multiple SSL Certificates On a CentOS VPS With Apache Using One IP Address"},"content":{"rendered":"<div id=\"bsf_rt_marker\"><\/div><p><img decoding=\"async\" class=\"alignleft size-full wp-image-3706\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/05\/sni.jpg\" alt=\"sni\" width=\"120\" height=\"120\" \/>In this tutorial we will show you how to set up multiple SSL Certificates on a <a title=\"CentOS VPS Hosting\" href=\"https:\/\/www.rosehosting.com\/centos-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">CentOS VPS<\/a> with Apache using one IP address only.<\/p>\n<p>This is allowed by an extension to the SSL protocol called Server Name Indication (SNI). Most current desktop and mobile web browsers support SNI. The main benefit of using SNI is the ability to secure multiple websites without purchasing more IP addresses.<\/p>\n<p><!--more--><\/p>\n<p>Make sure the mod_ssl security module is installed and enabled so the Apache web server can use the OpenSSL library and toolkit:<\/p>\n<pre>yum install mod_ssl openssl<\/pre>\n<p>Execute the following commands:<\/p>\n<pre>mkdir -p \/etc\/httpd\/ssl\/\r\nmv \/etc\/httpd\/conf.d\/ssl.conf \/etc\/httpd\/conf.d\/ssl.conf.bak \r\ncd \/etc\/httpd\/ssl\/<\/pre>\n<p>Generate SSL certificate signing request (CSR) files for your domains:<\/p>\n<pre>openssl genrsa -out domain1.key 2048\r\nopenssl req -new -key domain1.key -out domain1.csr\r\n\r\nopenssl genrsa -out domain2.key 2048\r\nopenssl req -new -key domain2.key -out domain2.csr<\/pre>\n<p>and enter the following details for your certificates:<\/p>\n<ul>\n<li>Country Name<\/li>\n<li>State or Province Name<\/li>\n<li>Locality Name<\/li>\n<li>Organization Name<\/li>\n<li>Organizational Unit Name<\/li>\n<li>Email Address<\/li>\n<\/ul>\n<p>When prompted for the Common Name (i.e. domain name), enter the FQDN (fully qualified domain name) for the website you are securing.<\/p>\n<p>It is recommended to install commercial <a title=\"SSL certificates\" href=\"https:\/\/www.rosehosting.com\/ssl-certificates.html\" target=\"_blank\" rel=\"noopener noreferrer\">SSL certificates<\/a> when used in a production environment. Or, generate and use self-signed SSL certificates when you are just developing or testing a website or application using the following commands:<\/p>\n<pre>openssl x509 -req -days 365 -in domain1.csr -signkey domain1.key -out domain1.crt\r\n\r\nopenssl x509 -req -days 365 -in domain2.csr -signkey domain2.key -out domain2.crt<\/pre>\n<p>Edit the &#8216;ssl.conf&#8217; Apache configuration file:<\/p>\n<pre>vi \/etc\/httpd\/conf.d\/ssl.conf<\/pre>\n<p>and add the following lines:<\/p>\n<pre>LoadModule ssl_module modules\/mod_ssl.so\r\n\r\nListen 443\r\n\r\nNameVirtualHost *:443\r\n\r\nSSLPassPhraseDialog\u00a0 builtin\r\nSSLSessionCacheTimeout\u00a0 300\r\nSSLMutex default\r\nSSLRandomSeed startup file:\/dev\/urandom\u00a0 256\r\nSSLRandomSeed connect builtin\r\nSSLCryptoDevice builtin\r\nSSLStrictSNIVHostCheck off\r\n\r\n&lt;VirtualHost *:443&gt;\r\nDocumentRoot \/var\/www\/html\/domain1\r\nServerName domain1.com\r\nServerAlias www.domain1.com\r\nSSLEngine on\r\nSSLProtocol all -SSLv2\r\nSSLCipherSuite ALL:!ADH:!EXPORT:!SSLv2:RC4+RSA:+HIGH:+MEDIUM:+LOW\r\nSSLCertificateFile \/etc\/httpd\/ssl\/domain1.crt\r\nSSLCertificateKeyFile \/etc\/httpd\/ssl\/domain1.key\r\n#SSLCertificateChainFile \/etc\/httpd\/ssl\/ca.crt\r\nErrorLog logs\/ssl_error_log\r\nTransferLog logs\/ssl_access_log\r\nLogLevel warn\r\n&lt;Files ~ \"\\.(cgi|shtml|phtml|php3?)$\"&gt;\r\n\u00a0\u00a0\u00a0 SSLOptions +StdEnvVars\r\n&lt;\/Files&gt;\r\nSetEnvIf User-Agent \".*MSIE.*\" \\\r\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 nokeepalive ssl-unclean-shutdown \\\r\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 downgrade-1.0 force-response-1.0\r\nCustomLog logs\/ssl_request_log \\\r\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 \"%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \\\"%r\\\" %b\"\r\n&lt;\/VirtualHost&gt;\r\n\r\n&lt;VirtualHost *:443&gt;\r\nDocumentRoot \/var\/www\/html\/domain2\r\nServerName domain2.com\r\nServerAlias www.domain2.com\r\nSSLEngine on\r\nSSLProtocol all -SSLv2\r\nSSLCipherSuite ALL:!ADH:!EXPORT:!SSLv2:RC4+RSA:+HIGH:+MEDIUM:+LOW\r\nSSLCertificateFile \/etc\/httpd\/ssl\/domain2.crt\r\nSSLCertificateKeyFile \/etc\/httpd\/ssl\/domain2.key\r\n#SSLCertificateChainFile \/etc\/httpd\/ssl\/ca.crt\r\nErrorLog logs\/ssl_error_log\r\nTransferLog logs\/ssl_access_log\r\nLogLevel warn\r\n&lt;Files ~ \"\\.(cgi|shtml|phtml|php3?)$\"&gt;\r\n\u00a0\u00a0\u00a0 SSLOptions +StdEnvVars\r\n&lt;\/Files&gt;\r\nSetEnvIf User-Agent \".*MSIE.*\" \\\r\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 nokeepalive ssl-unclean-shutdown \\\r\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 downgrade-1.0 force-response-1.0\r\nCustomLog logs\/ssl_request_log \\\r\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 \"%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \\\"%r\\\" %b\"\r\n&lt;\/VirtualHost&gt;\r\n<\/pre>\n<p>When using a commercial SSL certificate, it is likely the signing authority will include an intermediate CA certificate. In that case, create a new &#8216;\/etc\/httpd\/ssl\/ca.crt&#8217; file and paste the contents of the Intermediate CA into it, then edit the the &#8216;ssl.conf&#8217; configuration file and uncomment the following line:<\/p>\n<pre>SSLCertificateChainFile \/etc\/httpd\/ssl\/ca.crt<\/pre>\n<p>so the Apache web server can find your CA certificate.<\/p>\n<p>Test the Apache configuration:<\/p>\n<pre>\/etc\/init.d\/httpd configtest\r\n\r\nSyntax OK<\/pre>\n<p>Restart the Apache service for the changes to take effect:<\/p>\n<pre>service httpd restart<\/pre>\n<p>Open https:\/\/domain1.com and https:\/\/domain2.com in your favorite web browser and verify that SSL certificates are installed correctly.<\/p>\n<p>Of course you don\u2019t have to do any of this if you use one of our <a title=\"Linux VPS Hosting\" href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">Linux VPS Hosting<\/a> services, in which case you can simply ask our expert Linux admins to set up multiple SSL Certificates on your VPS for you. They are available 24&#215;7 and will take care of your request immediately.<\/p>\n<p><strong><span style=\"color: #ff0000;\">PS<\/span>.<\/strong> If you liked this post please share it with your friends on the social networks using the buttons on the left or simply leave a reply below. Thanks.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this tutorial we will show you how to set up multiple SSL Certificates on a CentOS VPS with Apache &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"How To Set Up Multiple SSL Certificates On a CentOS VPS With Apache Using One IP Address\" class=\"read-more button\" href=\"https:\/\/www.rosehosting.com\/blog\/how-to-set-up-multiple-ssl-certificates-on-a-centos-vps-with-apache-using-one-ip-address\/#more-3704\" aria-label=\"Read more about How To Set Up Multiple SSL Certificates On a CentOS VPS With Apache Using One IP Address\">Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":3706,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1699,1703,13,1707],"tags":[177,460,461,459],"class_list":["post-3704","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-centos","category-security","category-tutorials","category-web-servers","tag-linux-vps","tag-multiple-ssl-certificates","tag-multiple-ssl-certificates-on-one-ip","tag-sni","generate-columns","tablet-grid-50","mobile-grid-100","grid-parent","grid-33"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.4 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How To Set Up Multiple SSL Certificates On a CentOS VPS With Apache Using One IP Address | RoseHosting<\/title>\n<meta name=\"description\" content=\"How To Set Up Multiple SSL Certificates On a CentOS VPS With Apache Using One IP Address | RoseHosting\" \/>\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.rosehosting.com\/blog\/how-to-set-up-multiple-ssl-certificates-on-a-centos-vps-with-apache-using-one-ip-address\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How To Set Up Multiple SSL Certificates On a CentOS VPS With Apache Using One IP Address\" \/>\n<meta property=\"og:description\" content=\"How To Set Up Multiple SSL Certificates On a CentOS VPS With Apache Using One IP Address | RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/how-to-set-up-multiple-ssl-certificates-on-a-centos-vps-with-apache-using-one-ip-address\/\" \/>\n<meta property=\"og:site_name\" content=\"RoseHosting\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/RoseHosting\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/rosehosting.helpdesk\" \/>\n<meta property=\"article:published_time\" content=\"2014-06-11T19:45:51+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-12-15T09:11:13+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/05\/sni.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"120\" \/>\n\t<meta property=\"og:image:height\" content=\"120\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Jeff Wilson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:site\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jeff Wilson\" \/>\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.rosehosting.com\\\/blog\\\/how-to-set-up-multiple-ssl-certificates-on-a-centos-vps-with-apache-using-one-ip-address\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-set-up-multiple-ssl-certificates-on-a-centos-vps-with-apache-using-one-ip-address\\\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/person\\\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"How To Set Up Multiple SSL Certificates On a CentOS VPS With Apache Using One IP Address\",\"datePublished\":\"2014-06-11T19:45:51+00:00\",\"dateModified\":\"2022-12-15T09:11:13+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-set-up-multiple-ssl-certificates-on-a-centos-vps-with-apache-using-one-ip-address\\\/\"},\"wordCount\":397,\"commentCount\":15,\"publisher\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-set-up-multiple-ssl-certificates-on-a-centos-vps-with-apache-using-one-ip-address\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2014\\\/05\\\/sni.jpg\",\"keywords\":[\"linux vps\",\"multiple SSL certificates\",\"multiple SSL certificates on one IP\",\"sni\"],\"articleSection\":[\"CentOS\",\"Security\",\"Tutorials\",\"Web Servers\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-set-up-multiple-ssl-certificates-on-a-centos-vps-with-apache-using-one-ip-address\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-set-up-multiple-ssl-certificates-on-a-centos-vps-with-apache-using-one-ip-address\\\/\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-set-up-multiple-ssl-certificates-on-a-centos-vps-with-apache-using-one-ip-address\\\/\",\"name\":\"How To Set Up Multiple SSL Certificates On a CentOS VPS With Apache Using One IP Address | RoseHosting\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-set-up-multiple-ssl-certificates-on-a-centos-vps-with-apache-using-one-ip-address\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-set-up-multiple-ssl-certificates-on-a-centos-vps-with-apache-using-one-ip-address\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2014\\\/05\\\/sni.jpg\",\"datePublished\":\"2014-06-11T19:45:51+00:00\",\"dateModified\":\"2022-12-15T09:11:13+00:00\",\"description\":\"How To Set Up Multiple SSL Certificates On a CentOS VPS With Apache Using One IP Address | RoseHosting\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-set-up-multiple-ssl-certificates-on-a-centos-vps-with-apache-using-one-ip-address\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-set-up-multiple-ssl-certificates-on-a-centos-vps-with-apache-using-one-ip-address\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-set-up-multiple-ssl-certificates-on-a-centos-vps-with-apache-using-one-ip-address\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2014\\\/05\\\/sni.jpg\",\"contentUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2014\\\/05\\\/sni.jpg\",\"width\":120,\"height\":120,\"caption\":\"sni\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-set-up-multiple-ssl-certificates-on-a-centos-vps-with-apache-using-one-ip-address\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How To Set Up Multiple SSL Certificates On a CentOS VPS With Apache Using One IP Address\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\",\"name\":\"RoseHosting.com\",\"description\":\"Premium Linux Tutorials Since 2001\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\",\"name\":\"RoseHosting\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/android-chrome-192x192-1.png\",\"contentUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/android-chrome-192x192-1.png\",\"width\":192,\"height\":192,\"caption\":\"RoseHosting\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/RoseHosting\",\"https:\\\/\\\/x.com\\\/rosehosting\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/rosehosting\\\/\"],\"description\":\"RoseHosting is a leading Linux hosting provider, serving thousands of clients world-wide since 2001.\",\"email\":\"info@rosehosting.com\",\"telephone\":\"(314) 275-0414\",\"legalName\":\"Rose Web Services LLC\",\"foundingDate\":\"2001-04-02\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"11\",\"maxValue\":\"50\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/person\\\/7ce77a842fa6a9a7f8efa186f2353713\",\"name\":\"Jeff Wilson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"caption\":\"Jeff Wilson\"},\"description\":\"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.\",\"sameAs\":[\"https:\\\/\\\/www.rosehosting.com\",\"https:\\\/\\\/www.facebook.com\\\/rosehosting.helpdesk\"],\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/author\\\/jwilson\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How To Set Up Multiple SSL Certificates On a CentOS VPS With Apache Using One IP Address | RoseHosting","description":"How To Set Up Multiple SSL Certificates On a CentOS VPS With Apache Using One IP Address | RoseHosting","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.rosehosting.com\/blog\/how-to-set-up-multiple-ssl-certificates-on-a-centos-vps-with-apache-using-one-ip-address\/","og_locale":"en_US","og_type":"article","og_title":"How To Set Up Multiple SSL Certificates On a CentOS VPS With Apache Using One IP Address","og_description":"How To Set Up Multiple SSL Certificates On a CentOS VPS With Apache Using One IP Address | RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/how-to-set-up-multiple-ssl-certificates-on-a-centos-vps-with-apache-using-one-ip-address\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2014-06-11T19:45:51+00:00","article_modified_time":"2022-12-15T09:11:13+00:00","og_image":[{"width":120,"height":120,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/05\/sni.jpg","type":"image\/jpeg"}],"author":"Jeff Wilson","twitter_card":"summary_large_image","twitter_creator":"@rosehosting","twitter_site":"@rosehosting","twitter_misc":{"Written by":"Jeff Wilson","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-set-up-multiple-ssl-certificates-on-a-centos-vps-with-apache-using-one-ip-address\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-set-up-multiple-ssl-certificates-on-a-centos-vps-with-apache-using-one-ip-address\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"How To Set Up Multiple SSL Certificates On a CentOS VPS With Apache Using One IP Address","datePublished":"2014-06-11T19:45:51+00:00","dateModified":"2022-12-15T09:11:13+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-set-up-multiple-ssl-certificates-on-a-centos-vps-with-apache-using-one-ip-address\/"},"wordCount":397,"commentCount":15,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-set-up-multiple-ssl-certificates-on-a-centos-vps-with-apache-using-one-ip-address\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/05\/sni.jpg","keywords":["linux vps","multiple SSL certificates","multiple SSL certificates on one IP","sni"],"articleSection":["CentOS","Security","Tutorials","Web Servers"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/how-to-set-up-multiple-ssl-certificates-on-a-centos-vps-with-apache-using-one-ip-address\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-set-up-multiple-ssl-certificates-on-a-centos-vps-with-apache-using-one-ip-address\/","url":"https:\/\/www.rosehosting.com\/blog\/how-to-set-up-multiple-ssl-certificates-on-a-centos-vps-with-apache-using-one-ip-address\/","name":"How To Set Up Multiple SSL Certificates On a CentOS VPS With Apache Using One IP Address | RoseHosting","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-set-up-multiple-ssl-certificates-on-a-centos-vps-with-apache-using-one-ip-address\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-set-up-multiple-ssl-certificates-on-a-centos-vps-with-apache-using-one-ip-address\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/05\/sni.jpg","datePublished":"2014-06-11T19:45:51+00:00","dateModified":"2022-12-15T09:11:13+00:00","description":"How To Set Up Multiple SSL Certificates On a CentOS VPS With Apache Using One IP Address | RoseHosting","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-set-up-multiple-ssl-certificates-on-a-centos-vps-with-apache-using-one-ip-address\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/how-to-set-up-multiple-ssl-certificates-on-a-centos-vps-with-apache-using-one-ip-address\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-set-up-multiple-ssl-certificates-on-a-centos-vps-with-apache-using-one-ip-address\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/05\/sni.jpg","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/05\/sni.jpg","width":120,"height":120,"caption":"sni"},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-set-up-multiple-ssl-certificates-on-a-centos-vps-with-apache-using-one-ip-address\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How To Set Up Multiple SSL Certificates On a CentOS VPS With Apache Using One IP Address"}]},{"@type":"WebSite","@id":"https:\/\/www.rosehosting.com\/blog\/#website","url":"https:\/\/www.rosehosting.com\/blog\/","name":"RoseHosting.com","description":"Premium Linux Tutorials Since 2001","publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.rosehosting.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.rosehosting.com\/blog\/#organization","name":"RoseHosting","url":"https:\/\/www.rosehosting.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","width":192,"height":192,"caption":"RoseHosting"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/RoseHosting","https:\/\/x.com\/rosehosting","https:\/\/www.linkedin.com\/in\/rosehosting\/"],"description":"RoseHosting is a leading Linux hosting provider, serving thousands of clients world-wide since 2001.","email":"info@rosehosting.com","telephone":"(314) 275-0414","legalName":"Rose Web Services LLC","foundingDate":"2001-04-02","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"11","maxValue":"50"}},{"@type":"Person","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713","name":"Jeff Wilson","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","caption":"Jeff Wilson"},"description":"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.","sameAs":["https:\/\/www.rosehosting.com","https:\/\/www.facebook.com\/rosehosting.helpdesk"],"url":"https:\/\/www.rosehosting.com\/blog\/author\/jwilson\/"}]}},"_links":{"self":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/3704","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/comments?post=3704"}],"version-history":[{"count":3,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/3704\/revisions"}],"predecessor-version":[{"id":44278,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/3704\/revisions\/44278"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/3706"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=3704"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=3704"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=3704"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}