1 | # Sun xVM VirtualBox
|
---|
2 | # VirtualBox webservice configuration.
|
---|
3 | #
|
---|
4 | # Copyright (C) 2007-2008 Sun Microsystems, Inc.
|
---|
5 | #
|
---|
6 | # This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
7 | # available from http://www.virtualbox.org. This file is free software;
|
---|
8 | # you can redistribute it and/or modify it under the terms of the GNU
|
---|
9 | # General Public License (GPL) as published by the Free Software
|
---|
10 | # Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
11 | # VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
12 | # hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
13 | #
|
---|
14 | # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
|
---|
15 | # Clara, CA 95054 USA or visit http://www.sun.com if you need
|
---|
16 | # additional information or have any questions.
|
---|
17 | #
|
---|
18 |
|
---|
19 | # User which runs the webservice daemon. Think twice if you leave this setting
|
---|
20 | # unchanged. Normally using a special service user is the better option.
|
---|
21 | VW_USER=root
|
---|
22 |
|
---|
23 | # Listen address of the webservice. The default (localhost) is the safest
|
---|
24 | # configuration, and if you want remote access you should consider using
|
---|
25 | # apache in reverse proxy configuration to do access control and encryption.
|
---|
26 | VW_HOST=localhost
|
---|
27 |
|
---|
28 | # Port on which the webservice listens. Default (18083) may be used if no
|
---|
29 | # other service uses this port on this machine.
|
---|
30 | VW_PORT=18083
|
---|
31 |
|
---|
32 | # end of VirtualBox webservice configuration
|
---|