Description | This article describes the steps to use the LUA script for content routing with the matching of the Host Header and Custom Header. |
Scope | FortiADC. |
Solution |
Prerequisite:
FortiADC Server Load-Balance (SLB) Content Routing Policy supports matching several conditions, but it does not have the option to match a custom HTTP header. To route HTTP request to backend Real Server Pools based on the HTTP Host Header and custom HTTP Header, configure Scripting (LUA script) is the only option to do content routing by matching the specific HTTP Host Header and custom HTTP Header.
when HTTP_REQUEST{ -- Get the Host header host = HTTP:header_get_value("Host")
-- Get the X-Custom header cust_header = HTTP:header_get_value("X-Custom")
-- Condition: Check if X-Custom matches exactly "abcde" or "fijkl" header_condition = (cust_header == "abcde" or cust_header == "fijkl")
-- Condition 2: Check if Host and X-Custom headers match, if matched then route with rule "ContentRouting-01" if host == "header.ft-dev.site" and header_condition then log("Matched Hostname and Custom-Header!") -- Log script line LB:routing("ContentRouting-01") else
-- No condition matches, close connection HTTP:close() end }
Related document: Overview |