Reputation: 312
I have created a .NET Core project with a SQL Server database in Windows 10, and I want to deploy it using the Nginx proxy on a virtual machine(Debian).
Which are the steps to follow to achieve that?
Upvotes: 3
Views: 4918
Reputation: 6292
You will have to install Nginx and then perform some necessary configurations in order to host your .NET app. You can check this article - Host ASP.NET Core on Nginx in Linux for details.
Upvotes: -1
Reputation: 341
Microsoft has a well written documentation for you:
https://learn.microsoft.com/en-us/aspnet/core/host-and-deploy/linux-nginx?view=aspnetcore-5.0
I didn't have much experience the first time I used this documentation. It was very easy to understand. Maybe this is a good start.
Upvotes: 5