Blog Post

Azure PaaS Blog
2 MIN READ

How to enable SNI(Service Name Indication) for your Azure Cloud Service

hailey_ding's avatar
hailey_ding
Icon for Microsoft rankMicrosoft
Oct 11, 2020

Pre-requirement:  

Now, have two domain names: www.haileyding.site, and www.dinghan.site 

Also, two certificates uploaded to my Cloud Service:  

 

Steps: 

The main changes happen on the .csdef file, .cscofg file, and also the OnStart method in the WebRole.cs. 

1. Add the two domain name in the definition file,  named with ‘ServiceDefinition.csdef 

Refer to this document about how to modify the service definition and configuration files. 

 

 

  1. Add my two certificates into the configuration file, named with ‘ServiceConfiguration.Cloud.cscfg 

 

 2. Since we cannot assign the same local port to multiple endpoints, so we need to override the OnStart method of the RoleEntryPoint class to overcome this issue.  

Please be noticed that the executionContext must be set to elevated, otherwise it is not possible for the OnStart method to edit the bindings. 

 

Navigate to the WebRole1 -> WebRole.cs, in this file, we can configure our OnStart method as below: 

 

 

 

 

namespace WebRole1 

{ 

    public class WebRole : RoleEntryPoint 

    { 

        public override bool OnStart() 

        { 

            using (var serverManager = new ServerManager()) 

            { 

                foreach (var site in serverManager.Sites.ToArray()) 

                { 

                    foreach (var binding in site.Bindings.ToList()) 

                    { 

                        if (binding.Protocol == "https") 

                        { 

                            var newbinding = site.Bindings.CreateElement("binding"); 

                            newbinding.SetAttributeValue("sslFlags", 1); 

                            newbinding.BindingInformation = binding.BindingInformation.Replace(":444:", ":443:"); 

                            newbinding.CertificateHash = binding.CertificateHash; 

                            newbinding.CertificateStoreName = binding.CertificateStoreName; 

                            newbinding.Protocol = "https"; 

                            site.Bindings.Remove(binding); 

                            site.Bindings.Add(newbinding); 

                        } 

                    } 

                } 

 

                serverManager.CommitChanges(); 

            } 

            RoleEnvironment.Changing += RoleEnvironmentChanging; 

            return base.OnStart(); 

        } 

        private void RoleEnvironmentChanging(object sender, RoleEnvironmentChangingEventArgs e) 

        { 

            e.Cancel = true; 

        } 

    } 

} 

3. Deploy the changes to my Cloud Service, then verify my custom domain name with HTTPS 

 

 

 

 

 

 

 

Reference: https://raflrx.wordpress.com/2017/08/08/enable-sni-on-a-windows-azure-cloud-service/ 

 

Updated Oct 13, 2020
Version 4.0
No CommentsBe the first to comment