-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.php.dist
55 lines (42 loc) · 1.25 KB
/
config.php.dist
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?php
$db_host = 'localhost';
$db_user = 'wienerlinien';
$db_pass = '';
$db_name = 'wienerlinien';
$db_user_long = 'wienerlinien_dev_long';
$db_pass_long = '';
$cache_expiration = 79200;
$cache_expiration_disruptions = 50;
$debug = false;
$wl_api_key = '';
$email_from = '[email protected]';
$report_email = '[email protected]';
$twitter = array(
1 => array( 'twitter_consumer_key' => '',
'twitter_consumer_secret' => '',
'twitter_oauth_token' => '',
'twitter_oauth_token_secret' => '',
'twitter_username' => ''),
2 => array( 'twitter_consumer_key' => '',
'twitter_consumer_secret' => '',
'twitter_oauth_token' => '',
'twitter_oauth_token_secret' => '',
'twitter_username' => ''),
3 => array( 'twitter_consumer_key' => '',
'twitter_consumer_secret' => '',
'twitter_oauth_token' => '',
'twitter_oauth_token_secret' => '',
'twitter_username' => ''),
);
$twitter_hashtag = '#wlvi';
$memcached_servers = array(
array('ip' => '127.0.0.1', 'port' => '11211')
);
$memcached_prefix = 'wienerlinien';
$download_failure_wait_times = array(10, 30, 60);
$disruptions_lockfile = '/tmp/wienerlinien_disruptions.lock';
$home_url = 'https://rueckgr.at/wienerlinien/';
$warning_period = 70;
$critical_period = 140;
$additional_json_headers = array(
);