码迷,mamicode.com
首页 > 数据库 > 详细

阿里云Ubuntu 14.04 + Nginx + .net core + MySql

时间:2017-10-09 00:26:35      阅读:372      评论:0      收藏:0      [点我收藏+]

标签:ted   cache   server   dev   remote   for   远程连接   sql   target   

前段时间帮朋友写了一个网站,现在做一个记录。

.Net Core 安装:

1 curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg
2 sudo mv microsoft.gpg /etc/apt/trusted.gpg.d/microsoft.gpg
3 sudo sh -c echo "deb [arch=amd64] https://packages.microsoft.com/repos/microsoft-ubuntu-trusty-prod trusty main" > /etc/apt/sources.list.d/dotnetdev.list
4 sudo apt-get update
5 sudo apt-get install dotnet-sdk-2.0.0

参考自:https://www.microsoft.com/net/core#linuxubuntu

 

 

Nginx安装:

1 sudo apt-get install update
2 sudo apt-get install nginx

参考字:http://blog.csdn.net/woshihaiyong168/article/details/53927308

 

MySql安装:

1 sudo apt-get install mysql-server

其中输入两次来设置Root密码。

然后需要配置远程连接,请参考:http://www.cnblogs.com/BTMaster/p/4035402.html

 

以上,安装内容就完成了。

 

Nginx配置:

1         location / {
2                 proxy_pass http://localhost:5000;
3                 proxy_http_version 1.1;
4                 proxy_set_header X-Forwarded-For $remote_addr;
5                 proxy_set_header Upgrade $http_upgrade;
6                 proxy_set_header Connection keep-alive;
7                 proxy_set_header Host $host;
8                 proxy_cache_bypass $http_upgrade;
9         }

阿里云Ubuntu 14.04 + Nginx + .net core + MySql

标签:ted   cache   server   dev   remote   for   远程连接   sql   target   

原文地址:http://www.cnblogs.com/maomishen/p/7638700.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!