OPNsense Forum

English Forums => General Discussion => Topic started by: zwck on February 07, 2020, 02:17:32 pm

Title: HAProxy - map files and directory selection
Post by: zwck on February 07, 2020, 02:17:32 pm
Hey Frankie :D

As far as i can determine the backend selection currently functions with
Code: [Select]
use_backend %[req.hdr(host),lower,map_dom(/tmp/haproxy/mapfiles/mapfile.txt,bk_defaultbackend)] 
with a mapfile.txt containing something like this:

Code: [Select]
sub.domain.tld bk_subdomain
when navigating to sub.domain.tld the properbackend will be selected. however i would like to be able to forward directories e.g
Code: [Select]
sub.domain.tld/dir bk_subdomaindirwhich does not work with map.dom in the usebackend code. How would i go about this ?