Program Arguments
Program arguments make configuration in terminal easier.
Provides a list of all available program arguments.
./void-linux-x64 --helpDescription: Runs the proxy
Usage: void-win-x64 [options]
Options: -r, --repository <repository> Provides a URI to NuGet repository [--repository https://nuget.example.com/v3/index.json or --repository https://username:password@nuget.example.com/v3/index.json]. -p, --plugin <plugin> Provides a path to the file, directory or URL to load plugin. --ignore-file-servers Ignore servers specified in configuration files --server <server> Registers an additional server in format <host>:<port> --interface <interface> Sets the listening network interface --port <port> Sets the listening port --offline Allows players to connect without Mojang authentication --logging <Critical|Debug|Error|Information|None|Trace|Warning> Sets the logging level --version Show version information -?, -h, --help Show help and usage information
Authentication
Section titled “Authentication”-
--offline
Allows players to connect without Mojang authentication.Example Usage ./void-linux-x64 --offline
Network
Section titled “Network”-
--interface
Overrides the listening network interface. -
--port
Overrides the listening port for the proxy.Example Usage ./void-linux-x64 \--interface 0.0.0.0 \--port 25565
Servers
Section titled “Servers”-
--server
Registers a server in format<host>:<port>
where the port is between1
and65535
. IPv6 addresses must be enclosed in square brackets. -
--ignore-file-servers
Ignore servers specified in configuration files.Example Usage ./void-linux-x64 \--ignore-file-servers \--server 127.0.0.1:25565 \--server [2001:db8::1]:25565
Plugins
Section titled “Plugins”-
--plugin
Allows you to specify plugins to load. -
--repository
Allows you to specify NuGet repositories to resolve plugin dependencies.Example Usage ./void-linux-x64 \--plugin https://example.org/download/YourPlugin1.dll \--plugin /home/YourPlugin2.dll \--repository https://nuget.example.com/v3/index.json
Logging
Section titled “Logging”-
--logging
Sets the logging level. Valid values are Trace, Debug, Information, Warning, Error and Critical.Example Usage ./void-linux-x64 --logging Debug
Version
Section titled “Version”-
--version
Displays the current version of Void Proxy.Example ./void-linux-x64 --version