shreemaan-abhishek commented on issue #9009:
URL: https://github.com/apache/apisix/issues/9009#issuecomment-1541434822

   I don't see anything unique in your route configuration. Here's mine, give 
it a try and lemme know if it works.
   
   ```bash
   curl -i http://127.0.0.1:9080/apisix/admin/routes/1 -H 'X-API-KEY: 
edd1c9f034335f136f87ad84b625c8f1' -X PUT -d '
   {
       "uri": "/hello",
       "plugins": {
           "limit-count": {
               "count": 2222,
               "time_window": 60,
               "rejected_code": 503,
               "key_type": "var_combination",
               "key": "$consumer_name $remote_addr"
           },
       "response-rewrite": {
         "headers": {
           "server": "",
           "x-server-new": "worked"
         }
       }
       },
       "upstream": {
           "type": "roundrobin",
           "nodes": {
               "127.0.0.1:1980": 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