How do I configure a .net core API to work in IIS?

后端 未结 2 1769
抹茶落季
抹茶落季 2020-11-28 16:14

I\'ve got a .net core API created in Visual Studio 2017 that\'s working fine. When I go to deploy it I get error message HTTP Error 500.19 with error code 0x8007000d. I\'v

2条回答
  •  情书的邮戳
    2020-11-28 16:39

    First of all, you need to install ASP.NET Core Module in web server. Here is the download link.

    Then install either SDK or Runtime in web server.

    Trouble Shooting

    If it still doesn't work, open a command prompt. Navigate to the web application folder and type dotnet YOUR_APP.dll. You should see something like this -

    C:\APIs> dotnet YOUR_APP.dll
    Hosting environment: Production
    Content root path: C:\APIs
    Now listening on: http://localhost:5000
    Application started: Press Ctrl+C to shut down.
    

    It means your application can run in the web server without IIS. Then you need to trouble shoot in IIS or some other things.

提交回复
热议问题