zoukankan      html  css  js  c++  java
  • 企业微信nginx配置https proxy_redirect

    0.proxy_redirect

    如果需要修改从被代理服务器传来的应答头中的"Location""Refresh"字段,可以用这个指令设置。
    假设被代理服务器返回Location字段为: http://localhost:8000/two/some/uri/
    这个指令: 
    proxy_redirect http://localhost:8000/two/ http://frontend/one/;
    将Location字段重写为http://frontend/one/some/uri/。
    在代替的字段中可以不写服务器名:
    ————————————————
    https://blog.csdn.net/u010391029/article/details/50395680
    
    参数off将在这个字段中禁止所有的proxy_redirect指令:

    1.配置

    在nginx配置https
    
    server {
        listen 443 ssl http2;
        ssl certificate /a.crt;
        ssl_cerficate_key /a/key;
        ssl_session_timeout 20m;
        ssl_session_caqche shared:SSL:10m;
        ssl_protocols     TLSv1 TLSv1.1 TLSv1.2;
        
    
        location / {
            proxy_redirect off;
            proxy_set_header Host  $host;
            proxy_set_header X-Real-IP  $remote_addr;
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
            proxy_pass  http://wwlproxy;
    }
    
    
    
    }

  • 相关阅读:
    C
    A
    枚举子集的几种方法
    Codeforces Round #476 (Div. 2) [Thanks, Telegram!] ABCDE
    wannafly挑战赛14
    2018西安电子科大同步赛
    概率dp学习记录
    xcoj 1103 插线板(树链刨分求最大子段和)
    bzoj 2286(虚树+树形dp) 虚树模板
    bzoj3012(Trie)
  • 原文地址:https://www.cnblogs.com/hixiaowei/p/12909373.html
Copyright © 2011-2022 走看看