Skip to content

Instantly share code, notes, and snippets.

@apbassi89
Created October 24, 2017 03:50
Show Gist options
  • Select an option

  • Save apbassi89/c8d0739fcdc16f676719c4c0eab02da4 to your computer and use it in GitHub Desktop.

Select an option

Save apbassi89/c8d0739fcdc16f676719c4c0eab02da4 to your computer and use it in GitHub Desktop.
<?php
// ...
protected $middleware = [
// ...
'App\Http\Middleware\ValidProxies',
];
// ...
<?php namespace App\Http\Middleware;
use Closure;
class ValidProxies {
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
*/
public function handle($request, Closure $next)
{
// Proxies
$request->setTrustedProxies([ $request->getClientIp() ]);
return $next($request);
}
}
@apbassi89
Copy link
Author

Fixes various issues with Laravel sitting behind a load balancer / firewall which accepts HTTPS requests and forward them to the Laravel Web Server on port 80. Essentially, this function tells Laravel to trust the X-Forwarded headers sent by the load balancer.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment