mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-11-04 06:23:17 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			416 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			416 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
namespace Crater\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;
 | 
						|
}
 |