Skip to content

Instantly share code, notes, and snippets.

@yahuarkuntur
Created October 29, 2012 22:25
Show Gist options
  • Save yahuarkuntur/3976942 to your computer and use it in GitHub Desktop.
Save yahuarkuntur/3976942 to your computer and use it in GitHub Desktop.
Silex logout URL
$app['security.firewalls'] = array(
'login' => array(
'pattern' => '^/login$',
'anonymous' => true,
),
'admin' => array(
'pattern' => '^/admin',
'form' => array(
'login_path' => '/login',
'check_path' => '/admin/login_check'),
'logout' => array('logout_path' => '/admin_logout', 'target_url' => '/admin'),
'users' => $app->share(function () use ($app) {
return new UserProvider($app);
}),
),
);
@deanc
Copy link

deanc commented Feb 19, 2017

I have been trying to figure out how to do this for a while. Thank you!

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