Implementing an API Gateway in ASP.NET Core with Ocelot

Hi, I take this back. I did some more digging and found where my issue was. I put the following under GlobalConfiguration, and it worked like a charm.

“RateLimitOptions”: {
“DisableRateLimitHeaders”: false,
“QuotaExceededMessage”: “Customize Tips!”,
“HttpStatusCode”: 429,
“ClientIdHeader”: “X-Forwarded-For”
}

Thanks a lot for your post