How to deploy .net core website in linux | Hosting .net core website in ubuntu using nginx server

Опубликовано: 13 Октябрь 2024
на канале: Ravindra Devrani
47,270
549

#deploy_asp.net_core_in_linux
Hi there, in this video I have described how to install nginx server and how to deploy asp .net core web app in linux machine. For this i have used nginx server as a reverse proxy server and asp .net mvc core for creating a web app.
Topics covered in this video:
How to deploy .net core app in linux.
How to install nginx server in linux machine.
===========================================================
Content inside default.config file:
server {
listen 80;
server_name example.com *.example.com;
location / {
proxy_pass http://localhost:5000;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection keep-alive;
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
}

content inside app.service file:
--------------
[Unit]
Description= mvcnew webapp
[Service]
WorkingDirectory=/var/www/app1
ExecStart=/usr/bin/dotnet /var/www/app1/mvcnew.dll
Restart=always
Restart service after 10 seconds if the dotnet service crashes:
RestartSec=10
SyslogIdentifier=mvcnew
Environment=ASPNETCORE_ENVIRONMENT=Production

[Install]
WantedBy=multi-user.target

....................................................................


Previous videos:
1. Asp.Net Core MVC Web App CRUD with EF Core
   • Asp.Net Core MVC full CRUD operations...  

2. How to use SQL-Server with VS Code in Ubuntu.
   • How to use SQL-Server with VS Code | ...  

Other links:
Angular tutorials and projects: https://bit.ly/3DitqDp
dot net 6 tutorial and project: https://bit.ly/3MSrXGX
dot net core series: https://bit.ly/3TolF4i
dot net 6 projects: https://bit.ly/3zpn9ng
.......................................................
connect with me
Twitter:   / ravi_devrani  
GitHub: https://github.com/rd003
Youtube:    / @ravindradevrani  
..........................................
Become a supporter:
You can buy me a coffee: https://www.buymeacoffee.com/ravindra...
.......................................................
connect with me
Twitter:   / ravi_devrani  
GitHub: https://github.com/rd003
Youtube:    / @ravindradevrani  
..........................................
Become a supporter:
You can buy me a coffee: https://www.buymeacoffee.com/ravindra...