ProxySG & Advanced Secure Gateway

 View Only
  • 1.  Combine multiple entries in ProxySG CPL

    Posted Jan 24, 2023 02:13 PM
    I have added the following CPL code to my proxysg:

    <proxy>
    url.domain=example.com detect_protocol (none)

    If later I want to add another detect_protocol (none) for a specific URL, do I just add another line to the above?

    ie:

    <proxy>
    url.domain=example.com detect_protocol (none)
    url.domain=newwebsite.com detect_protocol (none)


  • 2.  RE: Combine multiple entries in ProxySG CPL

    Broadcom Employee
    Posted Jan 25, 2023 12:43 AM
    Yes correct, however better way you can do it as follow,

    define url.domain condition list_of_domains
    example.com
    newwebsite.com
    ; Add domains in future you want to disable detect protocol above this line
    end

    <proxy>
    condition=list_of_domains detect_protocol(none)