short-url/app/Http/Middleware/TrustProxies.php

24 lines
447 B
PHP
Raw Normal View History

2020-07-01 08:57:45 +00: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.
*
* @var array|string|null
*/
2022-09-08 16:37:03 +00:00
protected $proxies = "*";
2020-07-01 08:57:45 +00:00
/**
* The headers that should be used to detect proxies.
*
* @var int
*/
protected $headers = Request::HEADER_X_FORWARDED_ALL;
}