家政小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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