mikyll commented on issue #12303:
URL: https://github.com/apache/apisix/issues/12303#issuecomment-2957961160

   Example with Admin API:
    
   - multiple URIs, with `uris` parameter:
   
       ```yaml
       - id: multiple_uris
         uris:
           - /Update
           - /update
         upstream:
           nodes:
             "httpbin.org": 1
       ```
   
   - generic URI and `filter_func`:
   
       ```yaml
       - id: filter_func
         uri: /*
         filter_func: |
           function(vars)
             return string.lower(vars.request_uri) == "/update"
           end
         upstream:
           nodes:
             "httpbin.org": 1
       ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@apisix.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to