Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
kapee-extensions
/
inc
/
vendor
/
opauth
/
opauth
/
example
:
opauth.conf.php.default
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /** * Opauth basic configuration file to quickly get you started * ========================================================== * To use: rename to opauth.conf.php and tweak as you like * If you require advanced configuration options, refer to opauth.conf.php.advanced */ $config = array( /** * Path where Opauth is accessed. * - Begins and ends with / * - eg. if Opauth is reached via http://example.org/auth/, path is '/auth/' * - if Opauth is reached via http://auth.example.org/, path is '/' */ 'path' => '/', /** * Callback URL: redirected to after authentication, successful or otherwise */ 'callback_url' => '{path}callback.php', /** * A random string used for signing of $auth response. */ 'security_salt' => 'LDFmiilYf8Fyw5W10rx4W1KsVrieQCnpBzzpTBWA5vJidQKDx8pMJbmw28R1C4m', /** * Strategy * Refer to individual strategy's documentation on configuration requirements. * * eg. * 'Strategy' => array( * * 'Facebook' => array( * 'app_id' => 'APP ID', * 'app_secret' => 'APP_SECRET' * ), * * ) * */ 'Strategy' => array( // Define strategies and their respective configs here ), );