Reputation: 33974
I have an asp.net website which is hosted on windows azure. The application is working very fine. I have configure self-signed certificates in IIS of windows azure. I have also configured the IIS bindings to use https(port 443). But, now my website is not working with https.
Note: I am also not seeing any screen about invalid certificates. The browser says the site not found.
Upvotes: 2
Views: 2510
Reputation: 20556
I have written a details blog about how to configure your Windows Azure application using HTTPS endpoint using SSL Certificate, from scratch as below:
Upvotes: 1
Reputation: 30903
Did you configure HTTPS IN Input endpoint with that certificate? If you just configured the self signed cert on the IIS in Azure Web Role instances, it will never work. Because your service definition has no HTTPS endpoint configured, thus the load balancer will not route any https traffic to your instances.
You may read this blog post, to get to know how Windows Azure Networking works.
Upvotes: 2