I have set up a .net core application on linux using nginx. It works perfectly with dotnet MyProject.dll. However, using the instructions in this link, when I try setting up a kestrel service, it doesn’t seem to be able to use the Configuration in the startup class. Here is my Program My start up class has the following: I keep
Tag: kestrel-http-server
Stop a running dotnet core website running on kestrel
When deploying a new version of an existing .net core website. How do I first safely stop the old running kestrel app? Here is an exmaple of what I would like to write (Pseudo deployment script): killall dotnet seems a little unsafe. How would it work if I were hosting two small sites on one box? Answer I have decided