include/settings.php
. The file simply contains a list of global variables and their values—mostly simple strings, with a few arrays—so even if you are unfamiliar with PHP, editing should not be difficult.
settings.php
file does not exist already, use a copy of the example file, settings.php.example
:
$ cp include/settings.php.example include/settings.php
$wmrServer = 'http://hostname:port';
hostname
is the hostname or IP of the machine running the backend (or localhost
, if it is on the same machine). port
is the value of wmr.server.bind.port
in the backend configuration, which is 50100
by default.
hostname
you put here may need to match the value of wmr.server.bind.host
in the backend configuration. Check that these match if you experience connection errors.