Ubuntu下使用Nginx部署.NETCore2.0网站

前言

本文介绍如何在 ubuntu 16.04 服务器上部署 ASP.NET Core 2.0 Web 项目。

安装 .NET Core

注册 Microsoft 签名密钥:

curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg
sudo mv microsoft.gpg /etc/apt/trusted.gpg.d/microsoft.gpg

注册软件源

sudo sh -c 'echo "deb [arch=amd64] https://packages.microsoft.com/repos/microsoft-ubuntu-xenial-prod xenial main" > /etc/apt/sources.list.d/dotnetdev.list'

安装 .NET SDK

在终端管理器下,运行以下命令:

sudo apt-get update
sudo apt-get install dotnet-sdk-2.0.2

Nginx 的安装与启动

安装 Nginx

sudo apt-get update
sudo apt-get install nginx

启动 Nginx

通过运行以下命令显式启动:

sudo service nginx start

配置 Nginx

server {
    listen 80;
    location / {
        proxy_pass http://localhost:8000;
        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;
    }
}

参考文章

1.使用 Nginx 在 Linux 上为 ASP.NET Core 设置托管环境,并对其进行部署
2.Get started with .NET in 10 minutes

本文名称:Ubuntu下使用Nginx部署.NETCore2.0网站
浏览路径:http://www.mswzjz.cn/qtweb/news6/425156.html

攀枝花网站建设、攀枝花网站运维推广公司-贝锐智能,是专注品牌与效果的网络营销公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 贝锐智能