mirror of
https://github.com/RedWizardsLab/EchoHub.git
synced 2026-09-04 08:36:11 +02:00
- Introduced a new migration to add the IsSystem column to the Channels table. - Updated the DbContext model snapshot to reflect the new IsSystem property. - Enhanced the ChannelService to manage system channels, including creation, visibility control, and protection against deletion. - Implemented ServerLogsService to handle live server logging, including reading from log files and managing access based on user roles. - Created ServerLogsSink to queue log events for streaming to the live log room. - Developed ServerLogsStreamService to stream log events to clients in real-time. - Added configuration options for server logs in appsettings. - Implemented comprehensive unit tests for channel service system channel behavior and server logs functionality.
211 lines
10 KiB
Markdown
211 lines
10 KiB
Markdown
# Configuration
|
|
|
|
EchoHub Server generates an `appsettings.json` with sensible defaults on first run (including a random JWT secret), so you can launch and start chatting immediately. Tweak things later when you feel like it.
|
|
|
|
> [!NOTE]
|
|
> Under the hood, EchoHub Server is built on ASP.NET Core, so it inherits the standard .NET configuration system. If you're familiar with that, everything works exactly as you'd expect. If not — no worries, this page covers everything you need.
|
|
|
|
## How It Works
|
|
|
|
EchoHub Server loads settings from multiple sources. Each source **overrides** the previous one, so you can layer defaults with environment-specific values:
|
|
|
|
```text
|
|
1. appsettings.json (base defaults)
|
|
2. appsettings.{Environment}.json (e.g. appsettings.Production.json)
|
|
3. Environment variables (great for Docker / CI)
|
|
4. Command-line arguments (highest priority)
|
|
```
|
|
|
|
The last one wins. If `appsettings.json` says `"Irc:Port": 6667` but you pass `--Irc:Port=7000` on the command line, port 7000 is what you get.
|
|
|
|
In practice this means you can leave `appsettings.json` alone and override just the settings you care about using environment variables or CLI flags — no need to edit JSON files if that's not your thing.
|
|
|
|
### Environment Variable Mapping
|
|
|
|
Environment variables use **double underscores** (`__`) in place of the JSON nesting. The rule is simple — replace every `:` (or each level of JSON nesting) with `__`:
|
|
|
|
| appsettings.json path | Environment variable |
|
|
| --- | --- |
|
|
| `Server:Name` | `Server__Name` |
|
|
| `Irc:Enabled` | `Irc__Enabled` |
|
|
| `Jwt:Secret` | `Jwt__Secret` |
|
|
| `Serilog:MinimumLevel:Default` | `Serilog__MinimumLevel__Default` |
|
|
| `ConnectionStrings:DefaultConnection` | `ConnectionStrings__DefaultConnection` |
|
|
|
|
Arrays use numeric indices: `Server:Admins:0` becomes `Server__Admins__0`, `Server:Admins:1` becomes `Server__Admins__1`, and so on.
|
|
|
|
This is why the Docker `.env` file uses `Server__Name=My Server` instead of JSON — Docker passes these as environment variables, and the server picks them up automatically.
|
|
|
|
### Examples
|
|
|
|
All three of these achieve the same thing — use whichever fits your setup.
|
|
|
|
**appsettings.json** (direct editing):
|
|
|
|
```json
|
|
{
|
|
"Server": {
|
|
"Name": "My EchoHub Server",
|
|
"PublicServer": true
|
|
}
|
|
}
|
|
```
|
|
|
|
**Environment variables** (Docker, systemd, shell export):
|
|
|
|
```bash
|
|
export Server__Name="My EchoHub Server"
|
|
export Server__PublicServer=true
|
|
```
|
|
|
|
**Command-line arguments** (quick overrides, highest priority):
|
|
|
|
```bash
|
|
./EchoHub.Server --Server:Name="My EchoHub Server" --Irc:Enabled=true
|
|
```
|
|
|
|
## Configuration Reference
|
|
|
|
The full `appsettings.json` is auto-generated on first run from the [example config](https://github.com/HueByte/EchoHub/blob/master/src/EchoHub.Server/appsettings.example.json). Here's every option:
|
|
|
|
### General
|
|
|
|
| Key | Default | Description |
|
|
| --- | --- | --- |
|
|
| `Urls` | `http://0.0.0.0:5000` | Listen address and port |
|
|
| `AllowedHosts` | `*` | Allowed host headers (leave `*` unless you need host filtering) |
|
|
|
|
### Database
|
|
|
|
| Key | Default | Description |
|
|
| --- | --- | --- |
|
|
| `ConnectionStrings:DefaultConnection` | *(empty)* | SQLite connection string. Empty = `echohub.db` in the app directory |
|
|
|
|
### Authentication
|
|
|
|
| Key | Default | Description |
|
|
| --- | --- | --- |
|
|
| `Jwt:Secret` | *(auto-generated)* | Signing key (min 32 chars). Auto-generated on first run |
|
|
| `Jwt:Issuer` | `EchoHub.Server` | JWT issuer claim |
|
|
| `Jwt:Audience` | `EchoHub.Client` | JWT audience claim |
|
|
|
|
Access tokens expire after 15 minutes, refresh tokens after 30 days with rotation on each use.
|
|
|
|
### Server Identity
|
|
|
|
| Key | Default | Description |
|
|
| --- | --- | --- |
|
|
| `Server:Name` | `My EchoHub Server` | Display name shown to clients |
|
|
| `Server:Description` | `A self-hosted EchoHub chat server` | Server description |
|
|
| `Server:PublicServer` | `false` | Register on the [public directory](https://echohub.voidcube.cloud/servers) |
|
|
| `Server:PublicHosts` | `[]` | Hostnames advertised to the directory (array, e.g. `["chat.example.com"]`). Required when `PublicServer` is `true` |
|
|
| `Server:Tags` | `[]` | Topic tags surfaced in the directory browser (array, e.g. `["community", "gaming"]`) |
|
|
| `Server:Admins` | `[]` | Array of admin usernames (e.g. `["alice", "bob"]`) |
|
|
| `Server:Registration` | `open` | Registration mode: `open`, `invite` (codes via `/invite`, Admin+), or `closed` |
|
|
| `Server:DirectoryClaimPath` | *(empty)* | Overrides where the directory claim token file is stored. Empty = `directory-claim.json` next to the SQLite database. Treat it as a secret and back it up with the database |
|
|
|
|
### Uploads
|
|
|
|
Per-attachment size limits by kind (in megabytes) and the per-message attachment cap. An
|
|
absent or partial `Uploads` section keeps the built-in defaults. See
|
|
[Messages & Attachments](messages-and-attachments.md) for how kinds are detected.
|
|
|
|
| Key | Default | Description |
|
|
| --- | --- | --- |
|
|
| `Uploads:MaxImageSizeMB` | `10` | Max size for one image attachment |
|
|
| `Uploads:MaxAudioSizeMB` | `10` | Max size for one audio attachment |
|
|
| `Uploads:MaxFileSizeMB` | `100` | Max size for any other attachment |
|
|
| `Uploads:MaxAvatarSizeMB` | `2` | Max avatar upload size |
|
|
| `Uploads:MaxAttachmentsPerMessage` | `10` | Attachments allowed on a single message |
|
|
|
|
The server sizes its request-body limits from these values, so raising a limit here is all
|
|
that's needed — no separate Kestrel tuning.
|
|
|
|
### Spam Protection
|
|
|
|
Per-user flood, duplicate, join, and channel-create limits with auto-mute escalation. Mods and
|
|
above are always exempt, and the defaults are lenient enough that a fast typist never trips them.
|
|
An absent or partial `Spam` section keeps these defaults.
|
|
|
|
| Key | Default | Description |
|
|
| --- | --- | --- |
|
|
| `Spam:Enabled` | `true` | Master switch for all spam protection |
|
|
| `Spam:MaxMessagesPerWindow` | `8` | Max messages per `WindowSeconds` before a send is rejected |
|
|
| `Spam:WindowSeconds` | `5` | Sliding window (seconds) for the message-rate check |
|
|
| `Spam:MaxDuplicateMessages` | `3` | Identical messages in a row tolerated before rejection (E2E rooms are exempt — ciphertext differs each time) |
|
|
| `Spam:AutoMuteMinutes` | `5` | Auto-mute duration once a user hits the violation threshold. `0` disables auto-mute (rejections still apply) |
|
|
| `Spam:ViolationThreshold` | `5` | Rejected sends within `ViolationWindowMinutes` that trigger an auto-mute |
|
|
| `Spam:ViolationWindowMinutes` | `5` | Window (minutes) over which violations accumulate |
|
|
| `Spam:MaxJoinsPerWindow` | `25` | Max first-time channel joins per `JoinWindowSeconds` — keep this above your public channel count |
|
|
| `Spam:JoinWindowSeconds` | `30` | Sliding window (seconds) for the join-rate check |
|
|
| `Spam:MaxChannelCreatesPerWindow` | `3` | Max channel creations per `ChannelCreateWindowMinutes` |
|
|
| `Spam:ChannelCreateWindowMinutes` | `10` | Window (minutes) for the channel-create check |
|
|
|
|
### Encryption
|
|
|
|
| Key | Default | Description |
|
|
| --- | --- | --- |
|
|
| `Encryption:Key` | *(auto-generated)* | AES key for message encryption in transit |
|
|
| `Encryption:EncryptDatabase` | `false` | Also encrypt message content at rest in SQLite |
|
|
|
|
### Storage
|
|
|
|
| Key | Default | Description |
|
|
| --- | --- | --- |
|
|
| `Storage:Path` | *(empty)* | Directory for uploaded file blobs (attachments, avatars). Empty = `uploads/` in the app directory; the Docker image sets it to `/app/data/uploads` on the persistent volume |
|
|
| `Storage:CleanupIntervalHours` | `1` | How often the cleanup job runs (hours) |
|
|
| `Storage:RetentionDays` | `30` | Days to keep uploaded files before cleanup |
|
|
|
|
### IRC Gateway
|
|
|
|
| Key | Default | Description |
|
|
| --- | --- | --- |
|
|
| `Irc:Enabled` | `false` | Enable the IRC protocol gateway |
|
|
| `Irc:Port` | `6667` | IRC plain-text listen port |
|
|
| `Irc:TlsEnabled` | `false` | Enable TLS termination for IRC |
|
|
| `Irc:TlsPort` | `6697` | IRC TLS listen port |
|
|
| `Irc:TlsCertPath` | *(empty)* | Path to a PKCS#12 (`.pfx`) certificate |
|
|
| `Irc:TlsCertPassword` | *(empty)* | Password for the certificate file |
|
|
| `Irc:ServerName` | `echohub` | IRC server name in protocol messages |
|
|
| `Irc:Motd` | `Welcome to EchoHub IRC Gateway!` | Message of the day |
|
|
|
|
### Server Logs Room
|
|
|
|
When enabled, EchoHub auto-creates a read-only system channel and streams log events to it live,
|
|
so operators can watch the server from inside the app. Log lines are **never stored as messages** —
|
|
the rolling Serilog files remain the only persistence, and the room replays recent lines from those
|
|
files when someone opens it.
|
|
|
|
| Key | Default | Description |
|
|
| --- | --- | --- |
|
|
| `ServerLogs:Enabled` | `true` | Master switch for the live log room |
|
|
| `ServerLogs:RoomName` | `server-logs` | Name of the auto-created channel (reserved — users can't create a channel with this name) |
|
|
| `ServerLogs:MinRole` | `Mod` | Minimum server role that can see and join the room (`Member`, `Mod`, `Admin`, `Owner`) |
|
|
| `ServerLogs:MinLevel` | `Information` | Minimum log level streamed to the room (`Verbose`, `Debug`, `Information`, `Warning`, `Error`, `Fatal`) — affects only the room, not the file/console sinks |
|
|
| `ServerLogs:BacklogLines` | `100` | Recent log lines replayed from file when someone opens the room |
|
|
| `ServerLogs:LogDirectory` | `logs` | Directory holding the rolling log files (must match the Serilog file sink path below) |
|
|
| `ServerLogs:LogFilePattern` | `echohub-server-*.log` | Filename glob for the rolling log files inside `LogDirectory` |
|
|
|
|
### Logging
|
|
|
|
EchoHub uses [Serilog](https://serilog.net/) for structured logging — console output + daily rolling files with 14-day retention by default.
|
|
|
|
| Key | Default | Description |
|
|
| --- | --- | --- |
|
|
| `Serilog:MinimumLevel:Default` | `Information` | Global log level (`Debug`, `Information`, `Warning`, `Error`) |
|
|
| `Serilog:MinimumLevel:Override:Microsoft` | `Warning` | Suppress noisy framework logs |
|
|
| `Serilog:MinimumLevel:Override:Microsoft.AspNetCore` | `Warning` | Suppress request pipeline logs |
|
|
| `Serilog:MinimumLevel:Override:Microsoft.EntityFrameworkCore` | `Warning` | Suppress database query logs |
|
|
|
|
Log files are written to `logs/echohub-server-YYYY-MM-DD.log`. To change the path or retention, edit the `Serilog:WriteTo` section in `appsettings.json`.
|
|
|
|
Want more verbose output for debugging? Set the minimum level to `Debug`:
|
|
|
|
```bash
|
|
# via environment variable
|
|
export Serilog__MinimumLevel__Default=Debug
|
|
|
|
# or command line
|
|
./EchoHub.Server --Serilog:MinimumLevel:Default=Debug
|
|
```
|