Added optional rate limiting for services

This commit is contained in:
Pinga 2024-03-01 10:54:46 +02:00
parent b0f63ffb25
commit b3113da4f4
15 changed files with 110 additions and 13 deletions

View file

@ -6,5 +6,8 @@ return [
'db_port' => 3306,
'db_database' => 'registry',
'db_username' => 'your_username',
'db_password' => 'your_password'
'db_password' => 'your_password',
'rately' => false,
'limit' => 1000,
'period' => 60,
];