29 lines
1.1 KiB
PHP
29 lines
1.1 KiB
PHP
<?php
|
|
|
|
/**
|
|
* HybridAuth
|
|
* http://hybridauth.sourceforge.net | http://github.com/hybridauth/hybridauth
|
|
* (c) 2009-2015, HybridAuth authors | http://hybridauth.sourceforge.net/licenses.html
|
|
*/
|
|
// ----------------------------------------------------------------------------------------
|
|
// HybridAuth Config file: http://hybridauth.sourceforge.net/userguide/Configuration.html
|
|
// ----------------------------------------------------------------------------------------
|
|
|
|
return [
|
|
'base_url' => "https://{$_SERVER['HTTP_HOST']}/oauth",
|
|
|
|
'providers' => [
|
|
'Kakao' => [
|
|
'enabled' => true,
|
|
'keys' => ['id' => '500a99d34478a54c7c4fbfc04ff90512', 'secret' => ' '],
|
|
],
|
|
],
|
|
// If you want to enable logging, set 'debug_mode' to true.
|
|
// You can also set it to
|
|
// - "error" To log only error messages. Useful in production
|
|
// - "info" To log info and error messages (ignore debug messages)
|
|
"debug_mode" => false,
|
|
// Path to file writable by the web server. Required if 'debug_mode' is not false
|
|
"debug_file" => "",
|
|
];
|