Reputation: 4288
I can see when the site spins up from the text log of the stdout but I'm not sure when it goes down or how I can extend (or shrink) that number programatically.
Upvotes: 1
Views: 1797
Reputation: 10879
- Is there a way to set the application timeout in ASP.NET Core 1/MVC 6?
I don't think so. Application timeouts would be set by the host (IIS example).
- What is the default time a site stays in memory without activity on the site, haven't been able to locate documentation on this?
Again, this depends on the host. For IIS, the default time is 20 minutes. When you're debugging with Visual Studio, I'm not sure if it will timeout.
Upvotes: 1