Skip to content

Latest commit

 

History

History
41 lines (34 loc) · 1.05 KB

File metadata and controls

41 lines (34 loc) · 1.05 KB
layout wiki
title haproxy
summary haproxy
date 2020-06-18 00:52:42 +0900
updated 2020-06-18 02:10:38 +0900
tags haproxy
toc true
public true
parent DevOps
latex false
adsense true
  • TOC {:toc}

Header 값으로 forwarding 할 backend 결정하기

frontend header_front
    bind *:80
    mode http
    option forwardfor if-none
    acl demo_host_version hdr(X-DEMO-HOST-VERSION) -i test
    use_backend test_backend if demo_host_version
    default_backend prod_backend

backend test_backend
    ...

backend prod_backend
    ...

링크