mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-10-29 20:51:09 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			419 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			419 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| namespace Laraspace\Http\Middleware;
 | |
| 
 | |
| use Illuminate\Http\Request;
 | |
| use Fideloper\Proxy\TrustProxies as Middleware;
 | |
| 
 | |
| class TrustProxies extends Middleware
 | |
| {
 | |
|     /**
 | |
|      * The trusted proxies for this application.
 | |
|      *
 | |
|      * @var array
 | |
|      */
 | |
|     protected $proxies;
 | |
|     /**
 | |
|      * The current proxy header mappings.
 | |
|      *
 | |
|      * @var array
 | |
|      */
 | |
|     protected $headers = Request::HEADER_X_FORWARDED_ALL;
 | |
| }
 |