Pound - 反向HTTP代理/负载均衡器和SSL封装器


GPL
Linux
C/C++

软件简介

Pound 是一个反向 HTTP 代理,负载均衡器和 SSL 封装器。可代理客户端的 HTTPS 请求到 HTTP
的后端服务器,并对这些请求进行分发,支持会话保持,支持 HTTP/1.1。

示例配置:

ListenHTTP
    Address 1.2.3.4
    Port    80

    Service
        HeadRequire "Host: .*www.server0.com.*"

        BackEnd
            Address 192.168.0.10
            Port    80
        End
    End

    Service
        HeadRequire "Host: .*www.server1.com.*"

        BackEnd
            Address 192.168.0.11
            Port    80
        End
    End
End