2015-04-03 10:29:41 +00:00
|
|
|
# Arma Server Admin
|
|
|
|
|
2015-07-22 19:25:35 +00:00
|
|
|
[![Build Status](https://travis-ci.org/Dahlgren/arma-server-web-admin.svg?branch=master)](https://travis-ci.org/Dahlgren/arma-server-web-admin)
|
|
|
|
|
2016-11-10 00:29:55 +00:00
|
|
|
A simple to use web admin panel for Arma servers.
|
|
|
|
|
|
|
|
[Screenshots](http://imgur.com/a/Xod6U)
|
|
|
|
|
|
|
|
## 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
|
|
|
|
|
2015-04-03 10:29:41 +00:00
|
|
|
## Requirements
|
|
|
|
|
|
|
|
- Node.js, https://nodejs.org/
|
|
|
|
- Pre-installed Arma Server
|
|
|
|
|
2016-11-10 00:29:55 +00:00
|
|
|
## Supported Platforms
|
|
|
|
|
|
|
|
- Windows
|
|
|
|
- Linux
|
|
|
|
- Linx with Windows binary using Wine
|
|
|
|
|
2015-04-03 10:29:41 +00:00
|
|
|
## Supported Games
|
|
|
|
|
|
|
|
- arma1
|
|
|
|
- arma2
|
|
|
|
- arma2oa
|
|
|
|
- arma3
|
|
|
|
- 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
|
2015-05-29 15:52:12 +00:00
|
|
|
host | IP or Hostname to listen on
|
2015-04-03 10:29:41 +00:00
|
|
|
type | Which kind of server to use, can be 'linux', 'windows' or 'wine'
|
2015-05-30 00:29:48 +00:00
|
|
|
auth | If both username and password is set, HTTP Basic Auth will be used
|
2015-04-03 10:29:41 +00:00
|
|
|
|
|
|
|
## 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`
|
2015-05-30 00:39:00 +00:00
|
|
|
|
|
|
|
## System Configuration
|
|
|
|
|
|
|
|
### Windows
|
|
|
|
|
|
|
|
Make sure to disable Windows Error Reporting or server control will be stuck on a server crash.
|
|
|
|
|
|
|
|
### 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](http://wiki.winehq.org/FAQ#head-c857c433cf9fc1dcd90b8369ef75c325483c91d6).
|