Layer7 API Management

 View Only

  • 1.  .Disable the use of HTTP proxy in bulk in my Web APIs

    Posted Mar 11, 2025 05:49 PM

    Hi,

    I need to disable the use of HTTP proxy in bulk in my Web APIs. From what I've researched, this parameter is not in the environment variables but in the API's XML. Could you tell me if there is any way to disable the use of HTTP Proxy for multiple APIs via script or database?



  • 2.  RE: .Disable the use of HTTP proxy in bulk in my Web APIs

    Posted Mar 27, 2025 09:26 PM

    Hi Alex,

    you can try export policies and remove the below lines with sed command:

    <L7p:ProxyHost stringValue="das"/>
    <L7p:ProxyPort stringValue="877"/>
    

    and set to null the following:

    <L7p:ProxyPassword stringValue="null"/>
    <L7p:ProxyUsername stringValue="null"/>

    I hope this information can be useful for you.