VODServer Server Configuration

VODServer implements a simple HTTP server with configurable listen port and address. The server configuration is defined in vodserver-jetty.xml. By default, VODServer listens on port 9999, and listens only on localhost for security reasons. If necessary, you can change listen port by changing the value for

				<!-- Specify the port to listen on -->
				<constructor-arg value="9999" />

Likewise, you can change the listen address by changing the value for

				<!-- Specify the listen address. -->
				<constructor-arg value="127.0.0.1" />

For the listen address, you can use a specific IP address or host name, or you can use 0.0.0.0 to listen on all interfaces. Please do not make any other changes to this file, as they may break VODServer functionality.