当前位置:   article > 正文

关于http和https允许请求设置header问题_ts httpconfig 加header

ts httpconfig 加header

在给微信小程序提供接口的时候使用的是https,token是放在header里面,
不过服务器一直没获取到,怀疑可能是nginx没有允许设置header。解决办法就是在nginx配置文件里面加上underscores_in_headers on;

 ### wechatapi Start
  upstream wechatapi {
    server  localhost:8009;
  }
  server {
      listen  443 ssl;
      server_name api.test.org;
      underscores_in_headers on;
      ssl on;
      ssl_certificate /ssl/bundle.crt;
      ssl_certificate_key /ssl/txzs_unsecure.key;
      client_max_body_size 20M;
      access_log /system/logs/wechatapi_access.log;
      error_log  /system/logs/wechatapi_error.log;
      root       /system/wechatapi/current/public;
      index      index.html;

      location / {
        try_files $uri @wechatapi;
      }

      location @wechatapi {
        proxy_read_timeout 300;
        proxy_connect_timeout 300;
        proxy_set_header  X-Real-IP  $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header Host $http_host;
        proxy_redirect off;
        proxy_pass http://wechatapi;
      }

      error_page 403 /500.html;
      error_page 404 /500.html;
      error_page 405 /500.html;
      error_page 500 501 502 503 504 /500.html;

      location ^~ /error/ {
          internal;
          root /system/wechatapi/current/public;
      }

      location /images/ {
        try_files $uri /images/error.jpg;
      }

  }
  # wechatapi end
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/138138
推荐阅读
相关标签
  

闽ICP备14008679号