Search results

  1. S

    Deployed the .Net Core WebAPI in Linux and want to browse the application using domain name instead of IP of the system

    The certificate provided to be used in the application is organization specific. So had to use that. Please suggest if apache or kestrel is a better option for deploying the .net core api in Linux machine using the ssl certificate.
  2. S

    Deployed the .Net Core WebAPI in Linux and want to browse the application using domain name instead of IP of the system

    I tried adding the domain name near the IP of my computer in the etc/hosts file. But it still did not work. And I get as below:
  3. S

    Deployed the .Net Core WebAPI in Linux and want to browse the application using domain name instead of IP of the system

    I deployed the .NET core web API in Linux using the below command. sudo docker run -dt -e "ASPNETCORE_URLS=https://+;http://+" -e ASPNETCORE_Kestrel__Certificates__Default__Password="password" -e ASPNETCORE_Kestrel__Certificates__Default__Path=/https/<certificate.pfx> -v "<certificate...
Top