This repository has been archived on 2023-10-22. You can view files and clone it, but cannot push or open issues or pull requests.
gameserver/README.md

44 lines
1.6 KiB
Markdown
Raw Normal View History

2022-02-11 02:36:07 +01:00
# Game server
This is a collection of scripts to deploy game servers on Debian 11. All game
servers are wrapped in SystemD units and can be controlled by systemctl.
It also comes with a web front end which features the games hosted as well as
their respective download link. It also displays server stats and has an admin
panel for game servers that have interactive shells.
The following games are deployed:
* Bzflag
* Hedgewars
2022-02-13 19:30:31 +01:00
* Lix
2022-02-11 02:36:07 +01:00
* Mindustry
* OpenHV
* OpenSpades
2022-07-31 16:03:02 +02:00
* OpenSoldat
2022-02-11 02:36:07 +01:00
* SuperTuxKart
* Super Tux Party
* Teeworlds (optionally as DDrace)
2022-02-11 02:36:07 +01:00
* Unvanquished
* Xonotic (optionally as Battle Royale)
2022-02-11 02:36:07 +01:00
It is based on https://git.libregaming.org/c/onFOSS-LAN-Serverconfiguration
## Installation
The main script is `deploy.sh`. You only need to give if your domain name and your own name.
2022-02-11 02:36:07 +01:00
```
2022-07-31 16:03:02 +02:00
DOMAINNAME=play.jarno.ca HOSTEDBYNAME=DeathByDenim ./deploy.sh
2022-02-11 02:36:07 +01:00
```
2022-07-31 16:03:02 +02:00
This will download all the game servers, install them, configure them, and start them up. It should take less than an hour for all game servers to be up and running.
It also retrieves a certificate for Let's Encrypt for the web interface. If you don't want the certificate, you can also specify `NOSSL=1`.
2022-02-15 01:19:09 +01:00
There is also support for generating just the website without the game server which is useful if you want to host the website somewhere else while your main server is down.
```
DOMAINNAME=play.jarno.ca HOSTEDBYNAME=DeathByDenim ./pack_web_offline.sh
```
The webpage will display "OFFLINE" and not attempt to show the server stats.
The password for the admin panel as well as for game servers that support admin password is stored in `/etc/gameserverpassword`. The username for the admin panel is just `onfoss`.