美文网首页
ProxyPass Directive

ProxyPass Directive

作者: 御浅永夜 | 来源:发表于2018-07-19 09:42 被阅读0次
    说明:

    将一个远端服务器映射到本地服务器的URL空间中

    语法:

    ProxyPass [path] !|url [key=value [key=value ...]] [nocanon] [interpolate] [noquery]
    path是一个本地虚拟路径名,url是一个指向远程服务器的部分URL,并且不允许包含查询字符串。

    作用域:

    server config,virtual host, directory

    模块:

    mod_proxy

    当使用ProxyPass指令时,ProxyRequests指令通常应当被设为 off 。

    假设本地服务器地址是:http://example.com/

    ProxyPass /mirror/foo/ http://backend.example.com/将导致对http://example.com/mirror/foo/bar的本地请求在内部转换为一个代理请求:http://backend.example.com/bar

    相关文章

      网友评论

          本文标题:ProxyPass Directive

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