2014-02-09 03:19:48 +00:00
|
|
|
module.exports = {
|
2015-04-03 10:23:17 +00:00
|
|
|
game: 'arma3', // arma3, arma2oa, arma2, arma1, cwa, ofpresistance, ofp
|
2014-04-06 23:16:08 +00:00
|
|
|
path: 'path-to-arma3-directory',
|
2015-01-16 21:50:52 +00:00
|
|
|
port: 3000,
|
2015-05-29 15:24:18 +00:00
|
|
|
host: '0.0.0.0', // Can be either an IP or a Hostname
|
2014-04-06 23:16:08 +00:00
|
|
|
type: 'linux', // Can be either linux, windows or wine
|
2016-11-19 22:31:38 +00:00
|
|
|
parameters: [ // Additional startup parameters used by all servers
|
|
|
|
'-noSound',
|
|
|
|
'-world=empty'
|
|
|
|
],
|
2016-04-24 17:07:43 +00:00
|
|
|
serverMods: [ // Mods used exclusively by server and not shared with clients
|
|
|
|
'@mod1',
|
|
|
|
'@mod2',
|
|
|
|
],
|
2017-09-30 12:13:59 +00:00
|
|
|
auth: { // If both username and password is set, HTTP Basic Auth will be used. You may use an array to specify more than one user.
|
2015-05-30 00:29:48 +00:00
|
|
|
username: '', // Username for HTTP Basic Auth
|
|
|
|
password: '', // Password for HTTP Basic Auth
|
2015-08-15 11:56:43 +00:00
|
|
|
},
|
|
|
|
prefix: "", // Prefix to all server names
|
|
|
|
suffix: "", // Suffix to all server names
|
2014-02-09 03:19:48 +00:00
|
|
|
};
|