Last change
on this file since ff9da8b was 0924b6c, checked in by Özkan İliyaz <iliyaz_96@…>, 4 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
429 bytes
|
Rev | Line | |
---|
[0924b6c] | 1 | <?php
|
---|
| 2 |
|
---|
| 3 | namespace App\Http\Middleware;
|
---|
| 4 |
|
---|
| 5 | use Illuminate\Http\Request;
|
---|
| 6 | use Fideloper\Proxy\TrustProxies as Middleware;
|
---|
| 7 |
|
---|
| 8 | class TrustProxies extends Middleware
|
---|
| 9 | {
|
---|
| 10 | /**
|
---|
| 11 | * The trusted proxies for this application.
|
---|
| 12 | *
|
---|
| 13 | * @var array
|
---|
| 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 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.