-
Notifications
You must be signed in to change notification settings - Fork 21
/
config.sample.php
24 lines (18 loc) · 1.01 KB
/
config.sample.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php
/* config.sample.php
*
* Copy this file to 'config.php' and manage your custom configuration settings there.
*/
class CUSTOM_CONFIG {
/* Paths */
public static $ROOT_PATH = '/srv/www/slimjim.yourcompany.com/public_html/';
/* MySQL */
public static $DB_NAME = 'slimjim';
public static $DB_HOST = 'localhost';
public static $DB_USER = 'root';
public static $DB_PASS = '';
/* Github settings */
public static $GITHUB_CIDR_VERIFICATION = true; //[true(default), false]. Bypass CIDR(IP) verification of hook requests, e.g. in case of curl/ssl problems (alternative: restrict access via .htaccess). WARNING: Use with caution as this setting value "false" introduces a potential security risk!
public static $GITHUB_CURL_SSL_VERIFICATION = true; //[true(default), false]. Bypass curl SSL verification, e.g. for a server with a self-signed SSL certificate. WARNING: Use with caution as this setting value "false" introduces a potential security risk!
}
?>