Reputation: 719
I am looking to install a wildcard SSL certificate onto azure, however I do not want to spend the money only to find that it does not work. As they seem to be 100s of pounds.
I need to have a SSL certificate which covers the *.domainame.com
There seems to not be much documentation on this issue, however I came across a forum post where someone was having a problem with it.
Troubleshooting wildcard ssl certificate issue in azure
Has anyone successfully installed a wildcard certificate onto azure?
Cheers.
Upvotes: 0
Views: 2943
Reputation: 5430
Based on these two links I would say that Azure Websites are compatible with wildcard ssl certificates.
Your site need to be in Standard Mode
though.
Windows Azure Custom domain name documentation
Windows Azure Enable HTTPS for a Windows Azure web site
Upvotes: 0
Reputation: 21
You can use a wild card SSL in Azure. I had to add entries for every domain I wanted to use with it under SSL Bindings. So, I created one entry for domain.com and attached the wildcard SSL cert and then another for www.domain.com and attached the same wild card SSL cert. That seemed to work fine.
Upvotes: 1
Reputation: 3819
Yes, you can definitely use one SSL certificate in this scenario. This is a great article on setting it up : http://www.windowsazure.com/en-us/develop/net/common-tasks/enable-ssl/
We do this for all of our development environments in Azure, as we have one SSL certificate that covers 34 sites.
When deploying, just make sure you have a reference to it in your ServiceConfiguration.csfg :
<?xml version="1.0" encoding="utf-8"?>
<ServiceConfiguration serviceName="Company.One.Azure" xmlns="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration" osFamily="3" osVersion="*" schemaVersion="2013-03.2.0">
<Role name="Company.One.Web">
<Instances count="1" />
<ConfigurationSettings>
</ConfigurationSettings>
<Certificates>
<Certificate name="SslCertificate" thumbprint="{YourThumbPrintHere}" thumbprintAlgorithm="sha1" />
</Certificates>
Upvotes: 0