0
Fork 0
mirror of https://github.com/project-zot/zot.git synced 2025-04-08 02:54:41 -05:00

docs: fix ratelimit example (#2905)

Some fields are mixed case which is inconsistent with the rest of
example configs.

Signed-off-by: Ramkumar Chinchani <rchincha.dev@gmail.com>
This commit is contained in:
Ramkumar Chinchani 2025-01-22 09:17:01 -08:00 committed by GitHub
parent c6d343a730
commit ececc9c2c9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -6,12 +6,12 @@
"http": {
"address": "127.0.0.1",
"port": "8080",
"Ratelimit": {
"Rate": 10,
"Methods": [
"ratelimit": {
"rate": 10,
"methods": [
{
"Method": "GET",
"Rate": 5
"method": "GET",
"rate": 5
}
]
}