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

# 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 file: server { listen 80; server_name *.; 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 $
Back to Top