ngin代理
假如你的地址是:http://192.168.1.2:8282
你的域名是:www.jjycheng.com
你想访问域名www.jjycheng.com
时,实际请求的地址是http://192.168.1.2:8282
,但浏览器上的地址不变
。
此时,你用到的技术就是请求代理
代理.conf配置
http {
server {
listen 80;
server_name www.jjycheng.com;
location / {
proxy_pass http://192.168.1.2:8282;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_a