intento de muestra de gasolina
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 

29 righe
649 B

  1. <?php
  2. namespace App\Http\Middleware;
  3. use Illuminate\Http\Middleware\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<int, string>|string|null
  11. */
  12. protected $proxies;
  13. /**
  14. * The headers that should be used to detect proxies.
  15. *
  16. * @var int
  17. */
  18. protected $headers =
  19. Request::HEADER_X_FORWARDED_FOR |
  20. Request::HEADER_X_FORWARDED_HOST |
  21. Request::HEADER_X_FORWARDED_PORT |
  22. Request::HEADER_X_FORWARDED_PROTO |
  23. Request::HEADER_X_FORWARDED_AWS_ELB;
  24. }