6 |--------------------------------------------------------------------------
8 |--------------------------------------------------------------------------
10 | This file is for storing the credentials for third party services such
11 | as Stripe, Mailgun, Mandrill, and others. This file provides a sane
12 | default location for this type of information, allowing packages
13 | to have a conventional place to find your various credentials.
16 'disable_services' => env('DISABLE_EXTERNAL_SERVICES', false),
17 'callback_url' => env('APP_URL', false),
31 'region' => 'us-east-1',
35 'model' => BookStack\User::class,
41 'client_id' => env('GITHUB_APP_ID', false),
42 'client_secret' => env('GITHUB_APP_SECRET', false),
43 'redirect' => env('APP_URL') . '/login/service/github/callback',
47 'client_id' => env('GOOGLE_APP_ID', false),
48 'client_secret' => env('GOOGLE_APP_SECRET', false),
49 'redirect' => env('APP_URL') . '/login/service/google/callback',
53 'server' => env('LDAP_SERVER', false),
54 'dn' => env('LDAP_DN', false),
55 'pass' => env('LDAP_PASS', false),
56 'base_dn' => env('LDAP_BASE_DN', false),
57 'user_filter' => env('LDAP_USER_FILTER', '(&(uid=${user}))')