misc_pterodactyl-panel/app/Http/Middleware/TrustProxies.php

24 lines
437 B
PHP
Raw Normal View History

2017-12-17 19:07:38 +00:00
<?php
namespace Pterodactyl\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;
/**
2018-05-20 23:49:54 +00:00
* The headers that should be used to detect proxies.
2017-12-17 19:07:38 +00:00
*
2018-05-20 23:49:54 +00:00
* @var int
2017-12-17 19:07:38 +00:00
*/
protected $headers = Request::HEADER_X_FORWARDED_ALL;
2017-12-17 19:07:38 +00:00
}