aswi2020merlot-gitlab/app/Http/Middleware/TrustProxies.php @ 7b6d8d72
1 |
<?php
|
---|---|
2 |
|
3 |
namespace App\Http\Middleware; |
4 |
|
5 |
use Fideloper\Proxy\TrustProxies as Middleware; |
6 |
use Illuminate\Http\Request; |
7 |
|
8 |
class TrustProxies extends Middleware |
9 |
{
|
10 |
/**
|
11 |
* The trusted proxies for this application.
|
12 |
*
|
13 |
* @var array|string
|
14 |
*/
|
15 |
protected $proxies; |
16 |
|
17 |
/**
|
18 |
* The headers that should be used to detect proxies.
|
19 |
*
|
20 |
* @var int
|
21 |
*/
|
22 |
protected $headers = Request::HEADER_X_FORWARDED_ALL; |
23 |
}
|