虽然现在搭建好了,但是是想配置虚拟主机
我参考了这个帖子的做法 http://blog.sina.com.cn/s/blog_66ac09390101ivep.html
目前没改动过,仍然是访问 localhost ,默认路径是 /etc/usr/share/nginx/html
而我当前的代码是放在 /etc/usr/share/nginx/william_test
我现在是参考这个文章在 /etc/nginx 下创建 vhosts 目录 文件名为 william.conf
里面的代码如下:
server {
listen 80;
server_name william;
location / {
root /etc/usr/share/nginx/william_test ;
index index.php index.html index.htm;
} error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /etc/usr/share/nginx/william_test ;
}
location ~ .php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME william $fastcgi_script_name;
include fastcgi_params;
}
location ~ /.ht {
deny all;
}
}
最后 在 /etc/nginix.conf 文件里 include 起来
include /etc/nginx/vhosts/*;
最后重启 nginx
想问下各位大神,是这么配置的吗?我犯了什么错?
谢谢各位 Thanks
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.