Skip to content

Instantly share code, notes, and snippets.

@fackux
Last active August 3, 2022 19:08
Show Gist options
  • Save fackux/ab89c2ba6dbe601dd036af2dd72776e3 to your computer and use it in GitHub Desktop.
Save fackux/ab89c2ba6dbe601dd036af2dd72776e3 to your computer and use it in GitHub Desktop.
Landing Emprendimientos HAProxy en Local
# File local
# /etc/haproxy/haproxy.cfg
# AGREGAR DESPUES DE: ```acl acl_home path -i /```
acl acl_home_emprendimientos_zp path -i /emprendimientos
acl acl_home_emprendimientos_i24_coa path -i /desarrollos
acl acl_home_emprendimientos_iwbr path -i /lancamentos
acl acl_home_emprendimientos_wibr path -i /lancamentos
acl acl_home_emprendimientos_adv_urb_plv_cll path -i /proyectos
# AGREGAR DESPUES DE: ```use_backend backend_home if acl_home```
use_backend backend_home if acl_home_emprendimientos_zp
use_backend backend_home if acl_home_emprendimientos_i24_coa
use_backend backend_home if acl_home_emprendimientos_iwbr
use_backend backend_home if acl_home_emprendimientos_wibr
use_backend backend_home if acl_home_emprendimientos_adv_urb_plv_cll
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment