mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-20 22:22:16 +01:00
16 lines
422 B
PHP
16 lines
422 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'gotenberg' => [
|
|
'url' => env('GOTENBERG_URL'),
|
|
'basic_auth_username' => env('GOTENBERG_BASIC_AUTH_USERNAME'),
|
|
'basic_auth_password' => env('GOTENBERG_BASIC_AUTH_PASSWORD'),
|
|
],
|
|
'api' => [
|
|
'authenticated' => (int) env('API_RATE_LIMIT_AUTH_PER_MINUTE', 200),
|
|
'guest' => (int) env('API_RATE_LIMIT_GUEST_PER_MINUTE', 60),
|
|
],
|
|
];
|