暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

TrustProxies.php 436B

1234567891011121314151617181920212223
  1. <?php
  2. namespace App\Http\Middleware;
  3. use Fideloper\Proxy\TrustProxies as Middleware;
  4. use Illuminate\Http\Request;
  5. class TrustProxies extends Middleware
  6. {
  7. /**
  8. * The trusted proxies for this application.
  9. *
  10. * @var array|string
  11. */
  12. protected $proxies;
  13. /**
  14. * The headers that should be used to detect proxies.
  15. *
  16. * @var int
  17. */
  18. protected $headers = Request::HEADER_X_FORWARDED_ALL;
  19. }