nginx + centerOS 配置记录
1. 安装 百度出来的直接安装
2. 重启你可能发现这个没有代理到你的服务器,
sudo service nginx reload , 不行就走下面
如现在的配置,需要重启retoob,不行? 试试这个命令:sudo service nginx start
很不幸运的是,你发现这个还是显示的baidu的网址,没错,他做了重定向,但是你自己的服务器你知道的
server {
listen 80;
server_name test.taoqian123.com;
location / {
proxy_pass http://www.baidu.com/;
}
当make 文件的时候提示 xx not found的时候,使用 yum install -y xx-devel安装缺少的东西
nginx 添加 module正常的教程为:http://blog.csdn.net/chengxuyuan20100425/article/details/18704929