Загрузка страницы

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

#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
https://www.youtube.com/watch?v=HOB4G-uskJU&t=202s

2. How to use SQL-Server with VS Code in Ubuntu.
https://www.youtube.com/watch?v=ulndc5Ac6VQ

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: https://twitter.com/ravi_devrani
GitHub: https://github.com/rd003
Youtube: https://www.youtube.com/channel/UCzTMzmLbuEWOUmpzo9vaV7Q
..........................................
Become a supporter:
You can buy me a coffee: https://www.buymeacoffee.com/ravindradevrani
.......................................................
connect with me
Twitter: https://twitter.com/ravi_devrani
GitHub: https://github.com/rd003
Youtube: https://www.youtube.com/channel/UCzTMzmLbuEWOUmpzo9vaV7Q
..........................................
Become a supporter:
You can buy me a coffee: https://www.buymeacoffee.com/ravindradevrani

Видео How to deploy .net core website in linux | Hosting .net core website in ubuntu using nginx server канала Ravindra Devrani
Показать
Комментарии отсутствуют
Введите заголовок:

Введите адрес ссылки:

Введите адрес видео с YouTube:

Зарегистрируйтесь или войдите с
Информация о видео
7 июля 2020 г. 11:05:51
00:10:57
Яндекс.Метрика