本节内容:
nginx域名转发
1,下载nginx
官网下载:http://nginx.org/en/linux_packages.html#stable
或直接wget下载
复制代码 代码示例:
#wget http://nginx.org/packages/
centos/6/noarch/RPMS/nginx-release-centos-6-0.el6.ngx.noarch.rpm
2,安装yum源
复制代码 代码示例:
#rpm -ivh nginx-release-centos-6-0.el6.ngx.noarch.rpm
这个安装只是安装了一个nginx的yum源,并没有安装nginx软件,所以接下来还要使用yum install安装。
3,安装nginx
复制代码 代码示例:
#yum install nginx
4,更改nginx配置文件/etc/nginx/conf.d/default.conf
先备份一下default.conf
复制代码 代码示例:
#cd /etc/nginx/conf.d
#cp default.conf default.conf.bak
#vi default.conf
添加需要转发的域名:
复制代码 代码示例:
server {
listen 80;
server_name domain1.com;
location / {
proxy_pass http://localhost:10001;
}
}
server {
listen 80;
server_name domain2.com;
location / {
proxy_pass http://localhost:10002;
}
}
实现功能:
http://domain1.com转发到http://localhost:10001上,http://domain2.com转发到http://localhost:10002上,不在这两个域名之外的也转发到第一个server上。
注意,如果proxy_pass写的是http://localhost,那么网站的主机头就是localhost,而不是你写的那个server_name。
5,重启nginx
复制代码 代码示例:
#/sbin/service nginx restart