.net - Microsoft azure ssl configuration -


i`m trying setup ssl certificate on site using microsoft auzre hosting, ssl azure , domain provided superhosting.bg. site using .net mvc 5 , sql server db

in azure environment have ssl sertificate

azure ssl setup

in web.confing file have

  <system.webserver>     <rewrite>       <rules>         <!-- begin rule element https redirect -->         <rule name="force https" enabled="true">           <match url="(.*)" ignorecase="false" />           <conditions>             <add input="{https}" pattern="off" />           </conditions>           <action type="redirect" url="https://{http_host}/{r:1}" appendquerystring="true" redirecttype="permanent" />         </rule>         <!-- end rule element https redirect -->       </rules>     </rewrite>   </system.webserver> 

my question in firm provide me domain name value need setup work properly?

domain firm settings

after configured ip based ssl, azure web app create new, dedicated ip address web app. please open web app's custom domain page latest ip address , remap or record.

in addition, found there '.' @ end of cname record binding.

mebellete.azurewebsites.net. 

please change

mebellete.azurewebsites.net 

Comments

Popular posts from this blog

PHP and MySQL WP -

android - InAppBilling registering BroadcastReceiver in AndroidManifest -

go - golang pprof for c library code -