Files
crater/app/Http/Middleware/TrustProxies.php
Mohit Panjwani bdf2ba51d6 init crater
2019-11-11 12:16:00 +05:30

22 lines
419 B
PHP

<?php
namespace Laraspace\Http\Middleware;
use Illuminate\Http\Request;
use Fideloper\Proxy\TrustProxies as Middleware;
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;
}