Files

24 lines
441 B
PHP
Raw Permalink Normal View History

2020-05-23 19:05:18 +02:00
<?php
namespace App\Http\Middleware;
use Fideloper\Proxy\TrustProxies as Middleware;
use Illuminate\Http\Request;
class TrustProxies extends Middleware
{
/**
* The trusted proxies for this application.
*
2020-07-09 15:22:50 +02:00
* @var array|string|null
2020-05-23 19:05:18 +02:00
*/
protected $proxies;
/**
* The headers that should be used to detect proxies.
*
* @var int
*/
protected $headers = Request::HEADER_X_FORWARDED_ALL;
}