Update trust proxies for Heroku

This commit is contained in:
Jonathan Reinink 2019-12-18 14:43:51 -05:00
parent 2456d3009a
commit 3992b27e53
1 changed files with 2 additions and 2 deletions

View File

@ -12,12 +12,12 @@ class TrustProxies extends Middleware
*
* @var array
*/
protected $proxies;
protected $proxies = '**';
/**
* The headers that should be used to detect proxies.
*
* @var int
*/
protected $headers = Request::HEADER_X_FORWARDED_ALL;
protected $headers = Request::HEADER_X_FORWARDED_AWS_ELB;
}