Configure load balancer

Hello,
I am trying to setup a load balancer between 2 webpages namely 192.1.168.1 and 192.168.1.2…with just normal changes in index.html on both servers i could see their is load balanced created when i run the HAproxy ip address(192.168.1.3).
But i also want to load balance the icinga web interface between http://192.168.1.1/icingaweb2/dashboard and http://192.168.1.2/icingaweb2/dashboard

frontend web-frontend
bind 192.168.1.3:80
mode http
default_backend web-backend

backend web-backend
mode http
balance roundrobin
server test01 192.168.1.1:80 check
server test02 192.168.1.2:80 check
with the above config i can load balance regular apache web page
but like i said i want to see the load balance for icinga web page…Can someone please help with this

Thanks

what is the problem with icinga dashbaord? what you mean with

you do load balaning on IP-Address .1 and .2, so all requests to those servers will be load balanced. that should include any page accessed.

@Markus when i run the ip .3 it shows the content of index.html of ip 1 and 2 after every reload whereas i need the icinga web interface content to be showned