app
Console
Exceptions
Http
Controllers
Middleware
Authenticate.php
CheckForMaintenanceMode.php
EncryptCookies.php
RedirectIfAuthenticated.php
TrimStrings.php
TrustHosts.php
TrustProxies.php
VerifyCsrfToken.php
Kernel.php
Parser
Providers
Home.php
ParsedHome.php
Parser.php
User.php
bootstrap
config
database
public
resources
routes
storage
tests
.editorconfig
.env.example
.gitattributes
.gitignore
.styleci.yml
README.md
artisan
composer.json
composer.lock
package-lock.json
package.json
phpunit.xml
server.php
webpack.mix.js
24 lines
441 B
PHP
24 lines
441 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|null
|
|
*/
|
|
protected $proxies;
|
|
|
|
/**
|
|
* The headers that should be used to detect proxies.
|
|
*
|
|
* @var int
|
|
*/
|
|
protected $headers = Request::HEADER_X_FORWARDED_ALL;
|
|
}
|