21
12/17
Linux下配置 nginx + .net core 2.0
用到的软件如下 winSCP, vs2017 ,centos 6.8 64位, 安装环境 aliyun centos 6.8 64位 安装.net core 2.0 依赖的组件 yum install deltarpm epel-release unzip libunwind gettext libcurl-devel openssl-devel zlib libicu-devel 安装.net core 2.0 sudo dnf install libunwind libicu curl -sSL -o dotnet.tar.gz https://aka.ms/dotnet-sdk-2.0.0-linux-x64 sudo mkdir -p /opt/dotnet >> sudo tar zxf dotnet.tar.gz -C /opt/dotnet sudo ln -s /opt/dotnet/dotnet /usr/local/bin dotnet --...