forked from EasyEngine/easyengine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig-spec.php
More file actions
96 lines (80 loc) · 1.98 KB
/
config-spec.php
File metadata and controls
96 lines (80 loc) · 1.98 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<?php
# Global configuration file for EE.
return array(
'disabled_commands' => array(
'file' => '<list>',
'default' => array(),
'desc' => '(Sub)commands to disable.',
),
'sites_path' => array(
'runtime' => '=<path>',
'file' => '<path>',
'default' => null,
'desc' => 'Absolute path to where all sites will be stored.',
),
'locale' => array(
'runtime' => '=<locale>',
'file' => '<locale>',
'default' => null,
'desc' => 'Locale for WordPress.',
),
'le-mail' => array(
'runtime' => '=<le-mail>',
'file' => '<le-mail>',
'default' => null,
'desc' => 'Mail-id to be used for letsencrypt.',
),
'env' => array(
'runtime' => '=<env>',
'file' => '<env>',
'default' => null,
'desc' => 'EasyEngine server environment.',
),
'wp-mail' => array(
'runtime' => '=<wp-mail>',
'file' => '<wp-mail>',
'default' => null,
'desc' => 'Default Mail-id to be used for WordPress site installation.',
),
'sysctl' => array(
'runtime' => '=<true/false>',
'file' => '<sysctl>',
'default' => false,
'desc' => 'Whether to add sysctl config in docker-compose.',
),
'skip-tty' => array(
'runtime' => '=<true/false>',
'file' => '<bool>',
'default' => false,
'desc' => 'Skip tty allocation for remote command execution.',
),
'custom-compose' => array(
'runtime' => '=<custom-compose file>',
'file' => '<custom-compose>',
'default' => null,
'desc' => 'Path to custom compose file.',
),
'ee_installer_version' => array(
'file' => '<path>',
'default' => null,
'desc' => 'EE version to run.',
),
'color' => array(
'runtime' => true,
'file' => '<bool>',
'default' => 'auto',
'desc' => 'Whether to colorize the output.',
),
'debug' => array(
'runtime' => '[=<group>]',
'file' => '<group>',
'default' => false,
'desc' => 'Show all PHP errors; add verbosity to EE bootstrap.',
),
'quiet' => array(
'runtime' => '',
'file' => '<bool>',
'default' => false,
'desc' => 'Suppress informational messages.',
),
);