External Services
Use the following CPL code:
;=================================================
; Disable Trickling for specified sites using External Services
;=================================================
<proxy>
condition=No_Trickle_Sites response.icap_feedback(no)
define condition No_Trickle_Sites
url.domain=example.com
end condition No_Trickle_Sites
;=================================================
Malware Scanning
Use the following CPL code:
;=================================================
; Disable Trickling for specified sites using Malware Scanning
;=================================================
<proxy Bypass_BC_malware_scanning_solution>
policy.Bypass_BC_malware_scanning_solution ; Creates a new layer after the Malware Scanning layers.
define proxy policy Bypass_BC_malware_scanning_solution
<proxy Bypass_BC_malware_scanning_solution >
condition=No_Trickle_Sites condition=ShouldScanHighPerformance response.icap_feedback(no)
end
define condition No_Trickle_Sites
url.domain=example.com
end condition No_Trickle_Sites
;=================================================