• proxy_redirect参数的作用


    Nginx的代理功能太完善了,我们看看proxy_redirect参数的作用。
    
    案例说明:
    要做一个html.aslibra.com的域名处理很多网站的html内容,当然是后端的服务器了,目录分析
    html.zcom.com/img.aslibra.com/
    html.zcom.com/css.aslibra.com/
    访问的域名是该目录下的域名,那前端nginx的配置应该类似这样:
    
    server {
    server_name img.aslibra.com;
    location / {
    rewrite ^(.*) /$http_host$1 break;
    proxy_set_header Host html.aslibra.com;
    proxy_pass http://cache-89;
    }
    }
    
    但这样访问目录时如果没有以“/”结尾,则服务器会返回301redirect:
    
    [root@aslibra ~]# curl -I http://img.aslibra.com/www
    HTTP/1.1 301 Moved Permanently
    Server: nginx/0.7.59
    Date: Tue, 21 Jul 2009 15:28:58 GMT
    Connection: keep-alive
    Location: http://html.aslibra.com/img.aslibra.com/www/
    
    html.aslibra.com这个域名并非公布的域名,返回给客户端是会自然产生错误的
    Nginx可以很好的处理这个问题:
    
    server {
    server_name img.aslibra.com;
    location / {
    rewrite ^(.*) /$http_host$1 break;
    proxy_set_header Host html.aslibra.com;
    proxy_pass http://cache-89;
    proxy_redirect   http://html.aslibra.com/img.aslibra.com/    /;
    }
    }
    
    加一行proxy_redirect后,正常了:
    
    [root@aslibra ~]# curl -I http://img.aslibra.com/www
    HTTP/1.1 301 Moved Permanently
    Server: nginx/0.7.59
    Date: Tue, 21 Jul 2009 15:23:49 GMT
    Content-Type: text/html
    Location: http://img.aslibra.com/www/
    Connection: keep-alive
    Content-Length: 185
    Expires: Tue, 21 Jul 2009 16:23:49 GMT
    Cache-Control: max-age=3600
    
    就这么样就ok啦~
    不过貌似不支持变量出现在地址里,这个就郁闷了,必须指定相应域名。
    对于多个域名匹配的server,redirect设置不能写作’/'了,否则会用第一个域名作为redirect域名
    可以写几个匹配规则:
    
    proxy_redirect   http://html.aslibra.com/img.aslibra.com/    http://img.aslibra.com/;
    proxy_redirect   http://html.aslibra.com/css.aslibra.com/    http://css.aslibra.com/;
  • 相关阅读:
    清华同方 峰锐 K469 不开机维修
    开发一个简单实用的 本地音乐播放器
    DELL XPS l502x 触控板修修 主板进水
    Unreal Engine:变量同步
    UE4:网络同步
    UE4:专属服务器实例
    Java(11)_字节缓冲流&字符流
    Java(12)_IO流&Properties集合
    2022年4月16日12点06分
    HY57V641620ETH和HY57V641620FTP7的区别
  • 原文地址:https://www.cnblogs.com/archoncap/p/5156813.html
Copyright © 2020-2023  润新知