I have a asp .net core app running on Linux using Kestrel.
It binds to the ip ok on port 80.
But the nginx reverse proxy site needs to host the app under a non-r
ScottC,
Once your web content is under wwwroot you have to add app.UseStaticFiles() on the configure section on Startup class.
See the example below:
public void Configure(IApplicationBuilder app, IHostingEnvironment env) { app.UseStaticFiles(); }
Hope to have helped you.