このリポジトリは2023-09-09にアーカイブされています。 ファイルの閲覧とクローンは可能ですが、プッシュ、イシューの作成、プルリクエストはできません。
076server/app/Http/Middleware/TrustProxies.php

24 行
441 B
PHP
Raw 通常表示 履歴

2018-01-24 00:25:04 +09:00
<?php
namespace App\Http\Middleware;
use Fideloper\Proxy\TrustProxies as Middleware;
use Illuminate\Http\Request;
2018-01-24 00:25:04 +09:00
class TrustProxies extends Middleware
{
/**
* The trusted proxies for this application.
*
* @var array|string|null
2018-01-24 00:25:04 +09:00
*/
protected $proxies;
/**
2018-03-12 21:05:29 +09:00
* The headers that should be used to detect proxies.
2018-01-24 00:25:04 +09:00
*
* @var int
2018-01-24 00:25:04 +09:00
*/
2018-03-12 21:05:29 +09:00
protected $headers = Request::HEADER_X_FORWARDED_ALL;
2018-01-24 00:25:04 +09:00
}