Quantcast
Channel: Serverphorums.com - HAProxy
Viewing all articles
Browse latest Browse all 11674

How to access Web products by their names in access url

$
0
0
Dear Fellow HAProxy Users and Developers,

We are implementing HAProxy for reverse proxy load balancing for the
first time. We are seeking your guidance below on how to access our
products on two different servers. We are unable to access our working
products via HAproxy. We would appreciate any pointers to learn from so
that we could solve this issue.

We have 5 working product instances residing on 2 servers hosted in
internal LAN. HAProxy is in DMZ. We are using the following template
to copy the code into haproxy.cfg.

·The 5 live products can be accessed directly.

·HAProxy stats on Web browser show all 5 products are UP.

·But we cannot access them via HAProxy by their names, P1, P2, ...

Access URL http://CoscendCommunications.com/Product1

Thank you.

---------------------

frontend apps-frontend

bind *:80

log global

option forwardfor

option httplog clf

reqadd X-Forwarded-Proto:\ http

acl host_subdomainP1 url_sub -i http://CoscendCommunications.com/Product1

use_backend subdomainP1 if host_subdomainP1

default_backend apps-backend

backend apps-backend

log global # use global settings

balance roundrobin

option httpclose

option forwardfor

http-request set-header X-Forwarded-Port %[dst_port]

option httpchk HEAD / HTTP/1.1\r\nHost:localhost

backend subdomainP1

reqrep ^([^\ :]*)\ /Product1/(.*) \1\ /\2

server P1.VM1 10.20.20.12:5000 cookie c1 check

listen stats

…standard stats


Thank you.

--
Sincerely,

Susheel Jalali

__

Web site:www.CoscendCommunications.com
http://www.coscendcommunications.com/

------------------------------------------------------------------

CONFIDENTIALITY NOTICE: See 'Confidentiality Notice Regarding E-mail
Messages from Coscend Communications Solutions' posted at:
http://www.CoscendCommunications.com/Terms_and_Conditions.html
http://www.coscendcommunications.com/Terms_and_Conditions.html

Viewing all articles
Browse latest Browse all 11674

Trending Articles