CHAHI Saad
CHAHI Saad

Reputation: 312

Host ASP.NET Core on Linux with Nginx

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

Answers (2)

yogihosting
yogihosting

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

Oscar Veldman
Oscar Veldman

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

Related Questions