使用haproxy重定向到url

时间:2019-05-09 12:33:34

标签: reverse-proxy haproxy

我有2台运行RD Web访问的服务器,将其称为server01和server02。如果在浏览器https://server01/rdwebhttps://server02/rdweb中输入以下内容,则可以获得登录名。

我前面还有2个具有浮动IP的haproxy服务器,因为我将运行主动被动HA环境。

点击http://floating_ip时,我进入默认的IIS页面。我需要能够通过https://floating_ip/rdweb

进入RD网站访问页面

PS:我是haproxy的新手

frontend Local_Server
    bind <floating_ip>:80
    mode http
    default_backend webserver

backend webserver
    mode http
    balance roundrobin
    option forwardfor
    http-request set-header X-Forwarded-Port %[dst_port]
    http-request add-header X-Forwarded-Proto https if { ssl_fc }
    option httpchk HEAD / HTTP/1.1rnHost:localhost
    server server01.domain.xyz  server01_ip:80
    server server02.domain.xyz  server02_ip:80

0 个答案:

没有答案