I have self-hosted a vikunja installation v0.24.6. I installed it using Docker Compose, and it works, but occasionally sometimes I get an error 429 “Too Many Requests”. I tried to turn off the rate limit in the config file and added the following lines:
ratelimit:
enabled: false
In the logs, I saw that Vikunja was using my configuration file.
2025-07-03T12:54:39Z: INFO ▶ 001 Using config file: /etc/vikunja/config.yml
But it did not help. I am still getting 429 error. I have tried to add environment variables to the docker-compose file.
VIKUNJA_RATELIMIT_ENABLED: false
But it also doesn’t help. Please advise.