Linux建站步骤

一,进入网站主目录:

[xiaolin@MC-node2 ~]$ cd /opt/nginx/conf/vhosts/

二、复制一份配置文件到需要建站的域名:

比如,我要新建一个这个网站:huangxigua.com

[xiaolin@MC-node2 vhosts]$ cp -ra xpp.ccyyls.com.conf huangxigua.com.conf

(xpp.ccyyls.com.conf这个是之前配置好的文件,复制一份就不用自己写了)

三、修改这个文件:huangxihua.com.conf

[xiaolin@MC-node2 vhosts]$ vim huangxihua.com.conf

Linux建站步骤_第1张图片

把框出来的换成现在要建站的域名。

四、重启nginx

[xiaolin@MC-node2 vhosts]$ sudo nginx -t
[sudo] password for xiaolin: 
nginx: the configuration file /opt/nginx-1.6.3/conf/nginx.conf syntax is ok
nginx: configuration file /opt/nginx-1.6.3/conf/nginx.conf test is successful
[xiaolin@MC-node2 vhosts]$ sudo nginx -s reload

这样看到OK和successful就是OK了。

你可能感兴趣的:(Linux,服务器)