Files
docker_dev/crater/app/Http/Middleware/TrustProxies.php
2025-09-20 16:11:47 +02:00

24 lines
418 B
PHP

<?php
namespace Crater\Http\Middleware;
use Fideloper\Proxy\TrustProxies as Middleware;
use Illuminate\Http\Request;
class TrustProxies extends Middleware
{
/**
* The trusted proxies for this application.
*
* @var array
*/
protected $proxies;
/**
* The current proxy header mappings.
*
* @var array
*/
protected $headers = Request::HEADER_X_FORWARDED_ALL;
}