-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig.php-example
More file actions
196 lines (146 loc) · 5.65 KB
/
Copy pathconfig.php-example
File metadata and controls
196 lines (146 loc) · 5.65 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
<?php
/*
* phpVirtualBox example configuration. $Id$
*
* rename to config.php and edit as needed.
*
*/
class phpVBoxConfig {
/* Username / Password for system user that runs VirtualBox */
var $username = 'vbox';
var $password = 'pass';
/* SOAP URL of vboxwebsrv (not phpVirtualBox's URL) */
var $location = 'http://127.0.0.1:18083/';
/* Default language. See languages folder for more language options.
* Can also be changed in File -> Preferences -> Language in
* phpVirtualBox.
*/
var $language = 'en_us';
/*
*
* Not-so-common options / tweeking
*
*/
// Multiple servers example config. Uncomment (remove /* and */) to use.
// Add ALL the servers you want to use. Even if you have the server set
// above. The default server will be the first one in the list.
/*
var $servers = array(
array(
'name' => 'London',
'username' => 'user',
'password' => 'pass',
'location' => 'http://192.168.1.1:18083/',
'authMaster' => true // Use this server for authentication
),
array(
'name' => 'New York',
'username' => 'user2',
'password' => 'pass2',
'location' => 'http://192.168.1.2:18083/'
),
);
*/
// Disable authentication
#var $noAuth = true;
// Host / ip to use for console connections
#var $consoleHost = '192.168.1.40';
// Disable "preview" box
#var $noPreview = true;
// Default preview box update interval in seconds
#var $previewUpdateInterval = 30;
// Preview box pixel width
#var $previewWidth = 180;
// Change default preview aspect ratio to 1.
// http://www.wikipedia.org/wiki/Aspect_ratio_%28image%29#Previous_and_presently_used_aspect_ratios
#var $previewAspectRatio = 1.6;
/*
Allow to prompt deletion harddisk files on removal from Virtual Media Manager.
If this is not set, files are always kept. If this is set, you will be PROMPTED
to decide whether or not you would like to delete the harddisk file(s) when you
remove a harddisk from virtual media manager. You may still choose not to delete
the file when prompted.
*/
#var $deleteOnRemove = true;
/*
* File / Folder browser settings
*/
// Restrict file types
#var $browserRestrictFiles = array('.iso','.vdi','.vmdk','.img','.bin','.vhd','.hdd','.ovf','.ova','.xml','.vbox','.cdr','.dmg','.ima','.dsk','.vfd');
// Restrict locations / folders
#var $browserRestrictFolders = array('D:\\','C:\\Users\\Ian'); // Or something like '/home/vbox','/var/ISOs')
// Force use of local, webserver based file browser instead of going through vboxwebsrv
#var $browserLocal = true;
// Disable file / folder browser.
#var $browserDisable = true;
/*
* Misc
*/
/* Session Security Level
The following options are valid:
0 - Use only Browser's User-Agent string
1 - Use first octet of client IP
2 - Use second octet of client IP
3 - Use third octet of client IP
4 - Use entire client IP
Each option stacks with previous options. For example, the default setting of 2 uses:
Browser's User-Agent string + first octet of client IP + second octet of client IP
Do not change / set unless you have a good reason.
*/
#var $sessionSecurityLevel = 2;
/* Disable any of phpVirtualBox's main tabs */
#var $disableTabVMSnapshots = true; // Snapshots tab
#var $disableTabVMConsole = true; // Console tab
/* Screen resolutions for console tab */
#var $consoleResolutions = array('640x480','800x600','1024x768','1280x720','1440x900');
/* Max number of network cards per VM. Do not set above VirtualBox's limit (typically 8) or below 1 */
#var $nicMax = 4;
/* Enable advanced configuration items (normally hidden in the VirtualBox GUI)
* Note that some of these items may not be translated to languages other than english.
*/
#var $enableAdvancedConfig = true;
/*
Sorting VM List options
var $vmListSort = 'name'; // Default. Sort VM list by VM name
var $vmListSort = 'running'; // Place running VMs at the top of the list
var $vmListSort = 'gui'; // Use drag-and-drop / manual vm ordering
var $vmListSort = 'stateChange'; // Order by VMs' last state change
var $vmListSort = 'os'; // Sort by OS type
var $vmListSort = 'function(..){...}' // uses custom javascript function. Example follows:
// This places running VMs at the top of the list, then orders by
// the last VM state change, then by name.
var $vmListSort = 'function(a,b) {
if(a.state == "Running" && b.state != "Running") return -1;
if(b.state == "Running" && a.state != "Running") return 1;
if(a.lastStateChange < b.lastStateChange) return 1;
if(b.lastStateChange < a.lastStateChange) return -1;
return strnatcasecmp(a.name,b.name);
}';
NOTE: In a multi-user situation, 'gui' is probably a bad idea.
*/
#var $vmListSort = 'name';
// Authentication library.
var $authLib = 'Builtin';
// VM ownership
var $enforceVMOwnership = false;
// Per-user VM quota
// var $vmQuotaPerUser = 2;
// Allow VDE network configuration. This must be supported by the underlying VirtualBox installation!
#var $enableVDE = true;
// Disable setting SATA controllers port count to the max port number found when saving VMs.
#var $disableSataPortCount = true;
/* Enable Parallel Port configuration - EXPERIMENTAL
LPT support may or may not work for you.
!!! VirtualBox LPT support only works in Linux. !!!
*/
#var $enableLPTConfig = true;
/*
* Cache tweeking.
*
*/
// Refresh VM cache when VM Settings window is loaded. Default is true. Set to false to disable.
#var $vmConfigRefresh = true;
// Path
#var $cachePath = '/tmp';
/* END SETTINGS */
}