<?php12return [3/*4* Set trusted proxy IP addresses.5*6* Both IPv4 and IPv6 addresses are7* supported, along with CIDR notation.8*9* The "*" character is syntactic sugar10* within TrustedProxy to trust any proxy11* that connects directly to your server,12* a requirement when you cannot know the address13* of your proxy (e.g. if using Rackspace balancers).14*15* The "**" character is syntactic sugar within16* TrustedProxy to trust not just any proxy that17* connects directly to your server, but also18* proxies that connect to those proxies, and all19* the way back until you reach the original source20* IP. It will mean that $request->getClientIp()21* always gets the originating client IP, no matter22* how many proxies that client's request has23* subsequently passed through.24*/25'proxies' => in_array(env('TRUSTED_PROXIES', []), ['*', '**']) ?26env('TRUSTED_PROXIES') : explode(',', env('TRUSTED_PROXIES') ?? ''),27];282930