Cachet is now a Laravel 5 app
This commit is contained in:
61
config/trustedproxy.php
Normal file
61
config/trustedproxy.php
Normal file
@@ -0,0 +1,61 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
* Set trusted proxy IP addresses.
|
||||
*
|
||||
* Both IPv4 and IPv6 addresses are
|
||||
* supported, along with CIDR notation.
|
||||
*
|
||||
* The "*" character is syntactic sugar
|
||||
* within TrustedProxy to trust any proxy;
|
||||
* a requirement when you cannot know the address
|
||||
* of your proxy (e.g. if using Rackspace balancers).
|
||||
*/
|
||||
'proxies' => [
|
||||
'204.93.240.0',
|
||||
'204.93.177.0',
|
||||
'199.27.128.0',
|
||||
'173.245.48.0',
|
||||
'103.21.244.0',
|
||||
'103.22.200.0',
|
||||
'103.31.4.0',
|
||||
'141.101.64.0',
|
||||
'108.162.192.0',
|
||||
'190.93.240.0',
|
||||
'188.114.96.0',
|
||||
'197.234.240.0',
|
||||
'198.41.128.0',
|
||||
'162.158.0.0',
|
||||
'2400:cb00::',
|
||||
'2606:4700::',
|
||||
'2803:f800::',
|
||||
'2405:b500::',
|
||||
'2405:8100::',
|
||||
],
|
||||
|
||||
/*
|
||||
* Or, to trust all proxies, uncomment this:
|
||||
*/
|
||||
# 'proxies' => '*',
|
||||
|
||||
/*
|
||||
* Default Header Names
|
||||
*
|
||||
* Change these if the proxy does
|
||||
* not send the default header names.
|
||||
*
|
||||
* Note that headers such as X-Forwarded-For
|
||||
* are transformed to HTTP_X_FORWARDED_FOR format.
|
||||
*
|
||||
* The following are Symfony defaults, found in
|
||||
* \Symfony\Component\HttpFoundation\Request::$trustedHeaders
|
||||
*/
|
||||
'headers' => [
|
||||
\Illuminate\Http\Request::HEADER_CLIENT_IP => 'X_FORWARDED_FOR',
|
||||
\Illuminate\Http\Request::HEADER_CLIENT_HOST => 'X_FORWARDED_HOST',
|
||||
\Illuminate\Http\Request::HEADER_CLIENT_PROTO => 'X_FORWARDED_PROTO',
|
||||
\Illuminate\Http\Request::HEADER_CLIENT_PORT => 'X_FORWARDED_PORT',
|
||||
]
|
||||
];
|
||||
Reference in New Issue
Block a user