本节主要讲授假如利用nginx设置多个虚拟主机,也就是我们凡是说的设置域名.接下来我们设置两个域名a.ttlsa.com,b.ttlsa.com。
假如你还不会安装nginx的话,请看第一节内容:ttlsa教程系列之nginx – nginx安装(1)
序列号 | CPU | RAM | HDD | 带宽 | 售价(美元) | 免费试用 |
---|---|---|---|---|---|---|
香港服务器1 | E5-2620 | 32G | 1T HDD | 50M/无限流量 | $196.00 | 立即申请 |
香港服务器2 | E5-2650 | 32G | 1T HDD | 50M/无限流量 | $256.00 | 立即申请 |
香港服务器3 | E5-2680 | 32G | 1T HDD | 50M/无限流量 | $316.00 | 立即申请 |
香港服务器4 | E5-2690 | 32G | 1T HDD | 50M/无限流量 | $336.00 | 立即申请 |
香港服务器5 | E5-2697 | 32G | 1T HDD | 50M/无限流量 | $376.00 | 立即申请 |
香港服务器6 | E5-2620*2 | 32G | 1T HDD | 50M/无限流量 | $376.00 | 立即申请 |
香港服务器7 | E5-2650*2 | 32G | 1T HDD | 50M/无限流量 | $436.00 | 立即申请 |
香港服务器8 | E5-2680*2 | 32G | 1T HDD | 50M/无限流量 | $476.00 | 立即申请 |
香港服务器9 | E5-2690*2 | 32G | 1T HDD | 50M/无限流量 | $556.00 | 立即申请 |
香港服务器10 | E5-2697*2 | 32G | 1T HDD | 50M/无限流量 | $596.00 | 立即申请 |
香港服务器11 | E5-2680v4*2 | 32G | 1T HDD | 50M/无限流量 | $696.00 | 立即申请 |
香港服务器12 | E5-2698v4*2 | 32G | 1T HDD | 50M/无限流量 | $796.00 | 立即申请 |
筹备站点
我们站点统一放到/data/site下,每个站点根目次名称都和域名沟通,详细如下。新建a.ttlsa.com的站点根目次
#mkdir-p/data/site/a.ttlsa.com
新建a站的首页index.html
#cat/data/site/a.ttlsa.com/index.htmlthisisa.ttlsa.com!
新建b.ttlsa.com站点根目次
#mkdir-p/data/site/b.ttlsa.com
新建b站首页index.html,内容如this is b.ttlsa.com!
#cat/data/site/b.ttlsa.com/index.htmlthisisb.ttlsa.com!#mkdir-p/data/logs/nginx
我们统一讲日志存放到/data/logs下,这边是存放nginx日志,所以nginx日志保持在当前的nginx目次下.日志统一存放相对来说较量类型(假如你不习惯,你可以按本身的方法来做)
设置nginx虚拟主机
增加nginx主设置文件nginx.conf
先设置nginx日志名目,在nginx.conf找到如下内容,而且将#注释符号去掉
#log_formatmain'$remote_addr-$remote_user[$time_local]"$request"'#'$status$body_bytes_sent"$http_referer"'#'"$http_user_agent""$http_x_forwarded_for"';
设置nginx主设置文件
#vim/usr/local/nginx-1.5.1/conf/nginx.confserver{server_namea.ttlsa.com;listen80;root/data/site/a.ttlsa.com;access_log/data/logs/nginx/a.ttlsa.com-access.logmain;location/{}}server{server_nameb.ttlsa.com;listen80;root/data/site/b.ttlsa.com;access_log/data/logs/nginx/b.ttlsa.com-access.logmain;location/{}}
server{}:设置虚拟主机必需有这个段。
server_name:虚拟主机的域名,可以写多个域名,雷同于别名,好比说你可以设置成server_name b.ttlsa.com c.ttlsa.comd.ttlsa.com,这样的话,会见任何一个域名,内容都是一样的listen80,美国云服务器韩国vps云主机,监听ip和端口,这边仅仅只有端口,暗示当前处事器所有ip的80端口,假如只想监听127.0.0.1的80,写法如下:listen 127.0.0.1:80root/data/site/b.ttlsa.com:站点根目次,你网站文件存放的处所。注:站点目次和域名只管一样,养成一个好习惯access_log /data/logs/nginx/b.ttlsa.com-access.log main:会见日志location /{} 默认uri,location详细内容后续讲授,各人存眷一下.
重启并打开站点
nginx -t 查抄nginx设置是否ok,呼吁如下:
#/usr/local/nginx-1.5.1/sbin/nginx-tnginx:theconfigurationfile/usr/local/nginx-1.5.1/conf/nginx.confsyntaxisoknginx:configurationfile/usr/local/nginx-1.5.1/conf/nginx.conftestissuccessful
假如看到以上两行ok和successful就暗示设置问题,那接下来我们启动nginx
启动nginx
#/usr/local/nginx-1.5.1/sbin/nginx
会见a.ttlsa.com、b.ttlsa.com(我这边DNS已经理会到了192.168.1.201,在测试的环境下,我们可以通过版本hosts即可),绑定host要领如下:讲如下内容增加到C:WindowsSystem32Driversetchosts
192.168.1.201a.ttlsa.com192.168.1.201b.ttlsa.com
以上是windows绑定hosts方法,如下是linux方法
echo"192.168.1.201a.ttlsa.com192.168.1.201b.ttlsa.com">>/etc/hosts
利用欣赏器会见这两个站点。我这边利用curl来会见。
[[email protected]conf]#curlhttp://a.ttlsa.comthisisa.ttlsa.com!//a站点内容[[email protected]conf]#curlhttp://b.ttlsa.comthisisb.ttlsa.com!//b站点内容其他指令/usr/local/nginx-1.5.1/sbin/nginx-sstop/usr/local/nginx-1.5.1/sbin/nginx-sreload//修改设置之后reload,实际上严格意义来说这不是