[smarcet]- Refs #4578 - OpenId - Server Core Logic - Authentication Workflow

This commit is contained in:
smarcet
2013-10-18 18:50:27 -03:00
parent d1e6d73f8f
commit e278608a15
59 changed files with 1386 additions and 636 deletions

View File

@@ -26,7 +26,7 @@ return array(
|
*/
'default' => 'sqlite',
'default' => 'mysql',
/*
|--------------------------------------------------------------------------
@@ -45,10 +45,28 @@ return array(
*/
'connections' => array(
'sqlite' => array(
'driver' => 'sqlite',
'database' => ':memory:',
'prefix' => '',
'mysql' => array(
'driver' => 'mysql',
'host' => 'localhost',
'database' => 'openstackid_openid',
'username' => 'root',
'password' => 'Koguryo@1981',
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci',
'prefix' => '',
),
'mysql_external' => array(
'driver' => 'mysql',
'host' => 'localhost',
'database' => '506635_oslive',
'username' => 'root',
'password' => 'Koguryo@1981',
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci',
'prefix' => '',
),
),