Http published .net core project give a no-referrer-when-downgrade

249 views Asked by At

I tried to published locally web page. I access to webpage on laptops or desktop pc's web browser but when I tried on Android google chrome, return "ERR_ADDRESS_UNREACHABLE" error. my website adress is : http://192.168.x.yz:abcd Referrer Policy: no-referrer-when-downgrade

I also set in chrome://flags , "Insecure origins treated as secure" Enabled and add http://192.168.x.yz:abcd adding.

webconfig file:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <location path="." inheritInChildApplications="false">
    <system.webServer>
      <handlers>
        <add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModuleV2" resourceType="Unspecified" />
      </handlers>
      <aspNetCore processPath="dotnet" arguments=".\MyProjectImportantWeb.dll" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" hostingModel="inprocess" />
    </system.webServer>
  </location>
</configuration>
0

There are 0 answers