当前位置 主页 > 服务器问题 > nginx问题汇总 >

    nginx部署.net core站点的方法

    栏目:nginx问题汇总 时间:2019-02-26 16:09

    这篇文章主要介绍了nginx部署.net core站点的方法,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧

    步骤

    aspnetcore程序端口号5001,实际外部端口号8001,相当于把8001收到的请求转发给5001.

    把发布出来的文件全部丢掉 /var/www/JuXiangTou 里面去。可以用scp命令或者winscp客户端

    centos 7.x aspnet core 的运行环境,不需要装sdk,一般sdk里面是包含runtime的
     yum install libunwind libicuyum install aspnetcore-runtime-2.1

    nginx,一个反向代理服务,把过来的http请求转发给实际的aspnetcore处理

    sudo yum install epel-releasesudo yum install nginxsudo systemctl start nginxsudo systemctl enable nginx 

    装好nginx要配置端口之类的。

     cd /etc/nginx/ 

    nginx.conf是默认的配置文件,基本不用动。

     cd conf.dvim kestrel-juxiangtou.conf 

    下面主要就是两个端口号的需要改一下,其他都可以不用改动。

    server {    listen 8001;    location / {        proxy_pass http://localhost:5001;        proxy_http_version 1.1;        proxy_set_header Upgrade $http_upgrade;        proxy_set_header Connection keep-alive;        proxy_set_header Host $http_host;        proxy_cache_bypass $http_upgrade;    }} 

    保存退出

    验证一下配置,然后重新载入

    sudo nginx -t sudo nginx -s reload 

    防火墙firewall-cmd。不一定装过,要看环境。

    systemctl status firewalldfirewall-cmd --zone=public --add-port=8001/tcp --permanentfirewall-cmd --reloadsystemctl restart firewalld.service 

    建一个服务,用于维护dotnetcore的程序进程

    cd /etc/systemd/systemvim kestrel-juxiangtou.service

     

    [Unit]Description=JuXiangTou[Service]WorkingDirectory=/var/www/JuXiangTouExecStart=/usr/bin/dotnet /var/www/JuXiangTou/Site.WebApi.dllRestart=alwaysRestartSec=10SyslogIdentifier=JuXiangTouUser=rootEnvironment=ASPNETCORE_ENVIRONMENT=Production[Install]WantedBy=multi-user.target 

    保存退出

    systemctl restart kestrel-juxiangtou.service 

    重启一下服务。

    配置一下阿里云的网络安全组里面的端口

    参考资料

     http://www.projectcodify.com/hosting-aspnet-core-on-linux-using-nginx

    IIS7站长之家提示您:这篇文章你看完了!