Skip to content

Instantly share code, notes, and snippets.

@blenderdeluxe
Created August 16, 2016 02:44
Show Gist options
  • Save blenderdeluxe/5aadce5c0eb9de6616be74b03dbf905d to your computer and use it in GitHub Desktop.
Save blenderdeluxe/5aadce5c0eb9de6616be74b03dbf905d 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);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment