-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.default.php
More file actions
73 lines (63 loc) · 1.4 KB
/
config.default.php
File metadata and controls
73 lines (63 loc) · 1.4 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?php
/**
* Default config file, copy to config.php and adjust
*
* @author Knut Kohl <github@knutkohl.de>
* @copyright (c) 2016 Knut Kohl
* @licence MIT License - http://opensource.org/licenses/MIT
*/
return [
/**
* Your personal application title
*/
'title' => 'esniper @ ' . trim(exec('uname -n')),
/**
* Try to find esniper binary
*/
'esniper' => exec('which esniper'),
/**
* If defined, only these users are allowed to use the application
* (case insensitive)
*/
'users' => [],
# 'users' => [ 'user1', 'user2' ],
/**
* Create data dir inside root dir. automatic
*
* If set, make sure the web server running user (mostly www-data)
* can write to it!
*/
'dataDir' => '.d' . substr(md5(__DIR__), -11),
/**
* TLD to use for links to auctions
* here: ebay.com
*/
'ebay' => 'com',
/**
* Bid ? seconds before end time, use only if not set by user "seconds = ..."
*/
'seconds' => 10,
/**
* Design
*/
'design' => 'default',
/**
* Site languages
*/
'languages' => [
'en' => 'English',
'de' => 'Deutsch'
],
/**
* Locales
*/
'locales' => [
'en' => [],
'de' => ['de_DE.UTF-8', 'de_DE', 'de', 'ge'],
],
/**
* Inital language
*/
'language' => 'en',
'secret' => null
];