mirror of
				https://github.com/v2board/v2board.git
				synced 2025-11-04 03:11:46 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			436 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			436 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Http\Middleware;
 | 
						|
 | 
						|
use Fideloper\Proxy\TrustProxies as Middleware;
 | 
						|
use Illuminate\Http\Request;
 | 
						|
 | 
						|
class TrustProxies extends Middleware
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * The trusted proxies for this application.
 | 
						|
     *
 | 
						|
     * @var array|string
 | 
						|
     */
 | 
						|
    protected $proxies;
 | 
						|
 | 
						|
    /**
 | 
						|
     * The headers that should be used to detect proxies.
 | 
						|
     *
 | 
						|
     * @var int
 | 
						|
     */
 | 
						|
    protected $headers = Request::HEADER_X_FORWARDED_ALL;
 | 
						|
}
 |