Files
solidtime/config/trustedproxy.php
2024-04-15 16:21:30 +02:00

8 lines
149 B
PHP

<?php
declare(strict_types=1);
return [
'proxies' => ! is_string(env('TRUSTED_PROXIES', null)) ? [] : explode(',', env('TRUSTED_PROXIES')),
];