Publish Azure Web Role Without SSL Cert Fails -


I have a blue web roll project which is an SSL certificate for the production site, let's call it. I have no problem with publishing this and it works as expected

However, for testing purposes, we have another site that we do not need SSL. It runs on the default blue site name, since I have added evidence for the output configuration, the test was refused to publish, stating that the evidence on the target aspiration deployment is not appraised, I understand The test site has not been certified. However, trying to remove the test configuration for the certificate causes another error, since the csdef file has defined a certification and none provided in the test configuration.

How do I set up a configuration with certification without authentication and any?

With the sensitive production, my production configuration is given below.

  & lt; Roll name = "my app" & gt; & Lt; Instance = "1" /> & Lt; ConfigurationSettings & gt; & Lt; Setting name = "Microsoft.WindowsAzure.Plugins.Diagnostics.ConnectionString" value = "" /> & Lt; Setting = name = "datacentation string" value = "" /> & Lt; Setting name = "servicebusconction string" value = "" /> & Lt; Setting = name = "environment" value = "production" /> & Lt; / ConfigurationSettings & gt; & Lt; Certificate & gt; & Lt; Certificate name = "MyAppSSL" thumbprint = "thumb print" thumbprint algorithm = "" /> & Lt; / Certificate & gt;   

and test configuration:

  & lt; Role name = "my app" & gt; & Lt; Instance = "1" /> & Lt; ConfigurationSettings & gt; & Lt; Setting name = "Microsoft.WindowsAzure.Plugins.Diagnostics.ConnectionString" value = "data" /> & Lt; Setting = name = "datacentation string" value = "data" /> & Lt; Setting name = "servicebusconction string" value = "" /> & Lt; Setting = name = "environment" value = "staging" /> & Lt; / ConfigurationSettings & gt; & Lt ;! - The certificate prevents configuration from being published, but it also prevents publishing because I do not have a test on the test site - & gt;   

You can only create a dummy self-signed certificate That you upload to the test site and then update CSCFG with that dummy certificate thumbprint.

Comments

Popular posts from this blog

php - PDO bindParam() fatal error -

logging - How can I log both the Request.InputStream and Response.OutputStream traffic in my ASP.NET MVC3 Application for specific Actions? -

java - Why my included JSP file won't get processed correctly? -