forked from Noxwizard/versioncheck
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.sample.php
More file actions
33 lines (30 loc) · 798 Bytes
/
config.sample.php
File metadata and controls
33 lines (30 loc) · 798 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php
$db_host = '';
$db_port = '';
$db_user = '';
$db_password = '';
$db_name = '';
$db_prefix = '';
$script_path = '/';
$provider_configs = [
'google' => [
'clientId' => '',
'clientSecret' => '',
'redirectUri' => 'http://localhost/versioncheck/login.php?provider=google',
],
'github' => [
'clientId' => '',
'clientSecret' => '',
'redirectUri' => 'http://localhost/versioncheck/login.php?provider=github',
],
'gitlab' => [
'clientId' => '',
'clientSecret' => '',
'redirectUri' => 'http://localhost/versioncheck/login.php?provider=gitlab',
],
'mailgun' => [
'endpoint' => '',
'api_key' => '',
'domain' => '',
],
];