I've published a .NET Core 3 (preview 9) to Azure Web app running on linux. Unfortunately the app won't start and logs show this error:
System.InvalidOperationException: Unable to configure HTTPS endpoint. No server certificate was specified, and the default developer certificate could not be found or is out of date.
2019-09-18T11:45:51.528664649Z To generate a developer certificate run 'dotnet dev-certs https'
I'm accessing the site using the *.azurewebsites.net
domain which should have SSL enabled by default. I've published this exact app to Windows Web app without any troubles.
I'm not familiar with Linux very much, but I would like to host it there as its cheaper and seems to offer better performance. Any ideas how can I fix this issue?