SSL Verification files can't be read

  • Thread starter Thread starter SlenderMan564
  • Start date Start date
S

SlenderMan564

Guest


I have created an Asp.Net C# Razor site in Visual Studio 2017. Anyway I was given a series of steps by Winhost for getting free SSL certificate. I followed those steps. I've used FileZilla.



This is what's happening in those verification files. It says in Firefox that there's a syntax error. It can't read the first character. I am conjecturing something is happening in my web.config file. Any advise you could give me would be appreciated.


Here is the code of my web.config file.

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<staticContent>
<mimeMap fileExtension="." mimeType="text/xml" />
</staticContent>
</system.webServer>
<system.web>
<trust level="Full"/>
<compilation debug="true" targetFramework="4.6.1"/>
<httpRuntime targetFramework="4.6.1"/>
</system.web>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35"/>
<bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0"/>
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35"/>
<bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0"/>
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>

Kind regards,

Jordan Nash


Continue reading...
 
Back
Top