反向代理也叫reverse proxy,指的是代理外网用户的请求到内部指定web服务器,并将数据返回给用户的一种方式,这是用的比较多的一种方式。
ngx_http_prixy_module:将客户端的请求以http协议转发至指定服务器进行处理。
ngx_stream_proxy_module:将客户端的请求以tcp协议转发至指定服务器处理。
ngx_http_fastcgi_module:将客户端对php的请求以fastcgi协议转发至指定服务器处理。
ngx_http_uwsgi_module:将客户端对python的请求以uwsgi协议转发至指定服务器处理。
1、在163服务器上的nginx中的mobile.hu.com.conf添加如下内容
[root@localhost server]# vim mobile.hu.com.conf //需要注意,proxy_pass后面最好跟ip地址 location /test { proxy_pass http://192.168.31.161:80; } //在161服务器上配置test文件夹并在文件夹中创建index.html [root@localhost test]# pwd /data/nginx/pc/test [root@localhost test]# ls index.html [root@localhost test]# //然后在web页面访问mobile.hu.com/test,观测是否能够访问到161服务器中test目录下的index.html