forked from miguel456/rbrecruiter
Miguel Nogueira
4eb115d165
This reverts pull request #6. > This pull request applies code style fixes from an analysis carried out by [StyleCI](https://bitbucket.styleci.io). > > For more information, click [here](https://bitbucket.styleci.io/analyses/a2Jl7D).
24 lines
446 B
PHP
24 lines
446 B
PHP
<?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
|
|
*/
|
|
protected $proxies = "*";
|
|
|
|
/**
|
|
* The headers that should be used to detect proxies.
|
|
*
|
|
* @var int
|
|
*/
|
|
protected $headers = Request::HEADER_X_FORWARDED_AWS_ELB;
|
|
}
|