美文网首页
2019-05-23 生成发往上游的请求头部和包体

2019-05-23 生成发往上游的请求头部和包体

作者: 张大志的博客 | 来源:发表于2019-05-23 14:43 被阅读0次
    上游服务
    [root@hk conf.d]#cat /data/nginx/conf/conf.d/shangyou.conf 
    server {
           listen 9527;
           location / {
                 return 200 "server1\n";
    }
    }
    server {
           listen 8080;
           location / {
                return 200 "server2 
    uri:$uri   #发往上游的uri
    method:$request_method  #发往上游的请求方法
    request:$request  #发往上游的request
    http_name:$http_name  #发往上游的头部name
    \n"; 
    
    }
    }
    upstream proxyups {
          server 127.0.0.1:8080;
    }
    server {
         server_name proxy.zhangdazhi.com;
         location / {
             proxy_pass http://proxyups;
             proxy_method POST;   #定义发往上游的请求方法
          #   proxy_pass_request_headers off;  #定义是否将客户端的请求头发给上游服务器,默认是on
          #   proxy_pass_request_body off;  #定义是否将客户端请求的包体发往上游服务器
           # proxy_set_body 'hello world';  #定义包体内容
         #   proxy_set_header name '';  #如果请求头为空则不会发往上游服务器
           # proxy_http_version 1.1;  #默认的协议版本是1.0,与上游服务的keepalive连接需要1.1协议才支持
            #proxy_set_header Connection "";   
    }
    }
    

    相关文章

      网友评论

          本文标题:2019-05-23 生成发往上游的请求头部和包体

          本文链接:https://www.haomeiwen.com/subject/megvzqtx.html