hypothetical/app/Http/Middleware/TrustProxies.php

24 lines
436 B
PHP
Raw Normal View History

<?php
namespace App\Http\Middleware;
use Illuminate\Http\Request;
use Fideloper\Proxy\TrustProxies as Middleware;
class TrustProxies extends Middleware
{
/**
* The trusted proxies for this application.
*
2019-09-06 01:32:11 -04:00
* @var array|string
*/
protected $proxies;
/**
2018-03-05 18:45:02 -05:00
* The headers that should be used to detect proxies.
*
* @var int
*/
2018-03-05 18:45:02 -05:00
protected $headers = Request::HEADER_X_FORWARDED_ALL;
}