arma-server-web-admin/config.js.example

12 lines
442 B
Plaintext
Raw Normal View History

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
auth: { // If both username and password is set, HTTP Basic Auth will be used
username: '', // Username for HTTP Basic Auth
password: '', // Password for HTTP Basic Auth
}
2014-02-09 03:19:48 +00:00
};