标签:
最近开始用阿里云的vps,用了它的一键安装包安装了php环境,nginx的。下面记录创建多站点的心得。
首先php安装好后会自带安装一个phpwind的站点。
文件目录存放在 /alidata/www 下
配置文件是分开单独存放的,注意网上的很多都不准:
phpwind的配置文件/alidata/server/nginx/conf/vhosts/phpwind.conf
然后是在/alidata/server/nginx/conf/nginx.conf中调用 phpwind.conf文件 是通过 nginx.conf的include /alidata/server/nginx/conf/vhosts/*.conf;这一句
然后我们新增站点:例如pro1
站点文件存放在 /alidata/www 下
新增pro1的配置文件 pro1.conf
1 server { 2 listen 80; 3 server_name local.pro1.com; 4 #charset koi8-r; 5 #access_log logs/host.access.log main; 6 location / { 7 root /alidata/www/pro1; 8 index index.html index.htm; 9 } 10 #error_page 404 /404.html; 11 # redirect server error pages to the static page /50x.html 12 # 13 error_page 500 502 503 504 /50x.html; 14 location = /50x.html { 15 root html; 16 } 17 }
将pro1.conf 放在/alidata/server/nginx/conf/vhosts 下
重启nginx /etc/init.d/nginx start/stop/restart/reload 注意这里是让你选的 /etc/init.d/nginx restart 重启
然后配置本地host 就可以查看你新建的站点了
标签:
原文地址:http://www.cnblogs.com/webskill/p/4584378.html