Go to file
2018-12-14 11:03:13 +01:00
lib Handle errors while loading missions list 2018-10-08 23:16:07 +02:00
public Push missions with socket connection 2018-08-18 13:04:33 +02:00
routes Whitelist .pbo files for mission upload 2018-12-02 22:38:29 +01:00
test/lib Remove Play withSIX 2018-08-18 01:22:44 +02:00
.gitignore Updated gitignore file 2016-10-29 16:48:40 +02:00
.travis.yml Use more NodeJS versions while building with Travis CI 2018-08-18 03:05:16 +02:00
app.js Push missions with socket connection 2018-08-18 13:04:33 +02:00
config.js.example pass admins array from config to server config 2017-10-01 04:11:42 +02:00
package.json Update Bootstrap to 3.4.0 with XSS fixes 2018-12-14 11:03:13 +01:00
README.md Fix Linux typo in README 2018-03-07 09:59:05 +01:00
webpack.config.js Set path to webpack entry relative to config instead of cwd 2018-10-08 23:07:46 +02:00

Arma Server Admin

Build Status

A simple to use web admin panel for Arma servers.

Screenshots

Features

  • Create multiple instances of game servers in the same admin panel
  • See server status queryed from the instances with current mission and players
  • Download game logs
  • Upload missions from your local computer and from Steam Workshop to the server
  • Download and update mods from withSIX

Requirements

Supported Platforms

  • Windows
  • Linux
  • Linux with Windows binary using Wine

Supported Games

  • arma1
  • arma2
  • arma2oa
  • arma3
  • arma3_x64 (does not support linux)
  • cwa (does not support linux)
  • ofp
  • ofpresistance

Config

Key Description
game Which game server to launch, see above
path Folder path to game server
port Web port to use
host IP or Hostname to listen on
type Which kind of server to use, can be 'linux', 'windows' or 'wine'
parameters Extra startup parameters added to servers and headless clients
serverMods Mods that always and only will be used by the game servers
auth If both username and password is set, HTTP Basic Auth will be used
prefix Text prepended to all game servers name
suffix Text appended to all game servers name

How to Use

  1. Copy config.js.example to config.js

  2. Change values in config.js as described above or in the file

  3. Install all dependencies with npm install

  4. Launch the web UI with npm start or install as a Windows Service with npm run install-windows-service

System Configuration

Windows

Make sure to disable Windows Error Reporting or server control will be stuck on a server crash.

Install as a Windows Service with npm run install-windows-service.

Remove previously installed Windows Service with npm run uninstall-windows-service.

Wine

Make sure to disable Wine GUI Crash Dialog or server control will be stuck on a server crash. This is easiest solved using winetricks by running winetricks nocrashdialog. It can also be disabled manually. Read more at Wine FAQ.