2 <source media="(prefers-color-scheme: dark)" srcset="dark_logo.png">
3 <source media="(prefers-color-scheme: light)" srcset="light_logo.png">
4 <img src="dark_logo.png" alt="Mobius Logo">
10 Mobius is a cross-platform command line [Hotline](https://en.wikipedia.org/wiki/Hotline_Communications) server implemented in Golang.
12 - **Project Goal:** Make it simple to run a Hotline server on macOS, Linux, and Windows, with full compatibility for all popular Hotline clients.
17 Mobius is distributed through a single binary.
19 Depending on your platform and preferences, you can acquire the binary in the following ways:
23 1. Install [Go](https://go.dev) if needed
26 ### Download pre-built release
28 See [Releases](https://github.com/jhalter/mobius/releases) page.
33 To run a Hotline server with a default, sample configuration with ports forwarded from the host OS to the container:
35 docker run --rm -p 5500:5500 -p 5501:5501 ghcr.io/jhalter/mobius:latest
37 You can now connect to localhost:5500 with your favorite Hotline client and play around, but all changes will be lost on container restart.
39 To serve files from the host OS and persist configuration changes, you'll want to set up a [bind mount](https://docs.docker.com/storage/bind-mounts/) that maps a directory from the host into the container.
41 To do this, create a directory in a location of your choice on the host OS. For clarity, we'll assign the path to the `HLFILES` environment variable and re-use it.
43 Then run the docker command with `-v` and `-init` like so:
46 export HLFILES=/home/myuser/hotline-files
54 -v $HLFILES:/usr/local/var/mobius/config \
55 ghcr.io/jhalter/mobius-hotline-server:latest \
59 It's a good security practice to run your server as a non-root user, which also happens to make editing the configuration files easier from the host OS.
61 To do this, add the `--user` flag to the docker run arguments with a user ID and group ID of a user on the host OS.
67 For macOS the easiest path to installation is through Homebrew, as this works around Apple's notarization requirements for downloaded pre-compiled binaries by compiling the binary on your system during brew installation.
69 To install the server:
71 brew install jhalter/mobius-hotline-server/mobius-hotline-server
73 After installation `mobius-hotline-server` will be installed at `$HOMEBREW_PREFIX/bin/mobius-hotline-server` and should be in your $PATH.
75 The server config directory will be created under `$HOMEBREW_PREFIX/var/mobius`.
79 `brew services start mobius-hotline-server`
82 ## Server Configuration
84 After you have a server binary, the next step is to configure the server.
86 ### Configuration directory
88 Mobius stores its configuration and server state in a directory tree:
104 If you acquired the server binary by downloading it or compiling it, this directory doesn't exist yet! But you can generate it by running the the server with the `-init` flag:
106 `./mobius-hotline-server -init -config example-config-dir`
108 Brew users can find the config directory in `$HOMEBREW_PREFIX/var/mobius`.
110 Within this directory some files are intended to be edited to customize the server, while others are not.
114 * 🛠️ Edit this file to customize your server.
115 * ⚠️ Avoid manual edits outside of special circumstances (e.g. remove offending news content).
119 🛠️ `Agreement.text` - The server agreement sent to users after they join the server.
121 🛠️ `Files` - Home of your warez or any other files you'd like to share.
123 ⚠️ `MessageBoard.txt` - Plain text file containing the server's message board. No need to edit this.
125 ⚠️ `ThreadedNews.yaml` - YAML file containing the server's threaded news. No need to edit this.
127 ⚠️ `Users` - Directory containing user account YAML files. No need to edit this.
129 🛠️ `banner.jpg` - Path to server banner image.
131 🛠️ `config.yaml` - Edit to set your server name, description, and enable tracker registration.
136 The default installation includes two users:
138 * guest (no password)
139 * admin (default password admin).
141 User administration should be performed from a Hotline client. Avoid editing the files under the `Users` directory.
145 By default running `mobius-hotline-server` will listen on ports 5500/5501 of all interfaces with info level logging to STDOUT.
147 Use the -h or -help flag for a list of options:
150 $ mobius-hotline-server -h
151 Usage of mobius-hotline-server:
153 Base Hotline server port. File transfer port is base port + 1. (default 5500)
155 Path to config root (default "/usr/local/var/mobius/config/")
157 Populate the config dir with default configuration
159 IP addr of interface to listen on. Defaults to all interfaces.
163 Log level (default "info")
165 Enable stats HTTP endpoint on address and port
167 Print version and exit
171 To run as a systemd service, refer to this sample unit file: [mobius-hotline-server.service](https://github.com/jhalter/mobius/blob/master/cmd/mobius-hotline-server/mobius-hotline-server.service)
173 ## (Optional) HTTP API
175 The Mobius server includes an optional HTTP API to perform out-of-band administrative functions.
177 To enable it, include the `--api-addr` flag with a string defining the IP and port to listen on in the form of `<ip>:<port>`.
179 Example: `--api-addr=127.0.0.1:5503`
181 ⚠️ The API has no authentication, so binding it to localhost is a good idea!
183 #### GET /api/v1/stats
185 The stats endpoint returns server runtime statistics and counters.
188 ❯ curl -s localhost:5503/api/v1/stats | jq .
190 "ConnectionCounter": 0,
192 "CurrentlyConnected": 0,
193 "DownloadCounter": 0,
194 "DownloadsInProgress": 0,
195 "Since": "2024-07-18T15:36:42.426156-07:00",
197 "UploadsInProgress": 0,
198 "WaitingDownloads": 0
202 #### GET /api/v1/reload
204 The reload endpoint reloads the following configuration files from disk:
215 ❯ curl -s localhost:5503/api/v1/reload | jq .
217 "msg": "config reloaded"
221 #### POST /api/v1/shutdown
223 The shutdown endpoint accepts a shutdown message from POST payload, sends it to to all connected Hotline clients, then gracefully shuts down the server.
228 ❯ curl -d 'Server rebooting' localhost:5503/api/v1/shutdown
230 { "msg": "server shutting down" }