diff options
| author | Jeff Halter <868228+jhalter@users.noreply.github.com> | 2022-06-21 13:29:26 -0700 |
|---|---|---|
| committer | Jeff Halter <868228+jhalter@users.noreply.github.com> | 2022-06-21 13:29:26 -0700 |
| commit | 9c6291aa00db7b7e1d262e0465bfc7e08fc28807 (patch) | |
| tree | d12bb4e84a31169ba58c1e56b179b629d255985d /cmd/mobius-hotline-server | |
| parent | 02b446d81d53ba3ccd4175917a62563bbda54199 (diff) | |
Improve user-friendliness of default config
Diffstat (limited to 'cmd/mobius-hotline-server')
| -rw-r--r-- | cmd/mobius-hotline-server/mobius/config/config.yaml | 32 |
1 files changed, 29 insertions, 3 deletions
diff --git a/cmd/mobius-hotline-server/mobius/config/config.yaml b/cmd/mobius-hotline-server/mobius/config/config.yaml index 380c39a..50c3fa3 100644 --- a/cmd/mobius-hotline-server/mobius/config/config.yaml +++ b/cmd/mobius-hotline-server/mobius/config/config.yaml @@ -1,14 +1,40 @@ +# Name of the server as it appears on the Tracker Name: My Hotline server + +# Description of the server as it appears on the tracker Description: A default configured Hotline server running Mobius + +# Server banner ID; currently implemented BannerID: 0 -FileRoot: Files/ + +# Path to the Files directory, by default in a subdirectory of the config root named Files +FileRoot: Files + +# Enable tracker registration. Must be "true" or "false". EnableTrackerRegistration: false + +# List of trackers to register with Trackers: - hltracker.com:5499 - tracker.preterhuman.net:5499 -NewsDelimiter: "" + +# Preserve resource forks and file type/creator codes for files uploaded by Macintosh clients. +# This comes with trade-offs. For more details, see: +# https://github.com/jhalter/mobius/wiki/Resource-fork-support-in-Mobius +# Must be "true" or "false". +PreserveResourceForks: false + +# Optional custom date format for flat news postings NewsDateFormat: "" + +# Optional custom delimiter between flat news postings +NewsDelimiter: "" + +# Maximum simultaneous downloads; currently unimplemented MaxDownloads: 0 + +# Maximum simultaneous downloads per client; currently unimplemented MaxDownloadsPerClient: 0 + +# Maximum simultaneous connections/IP; currently unimplemented MaxConnectionsPerIP: 0 -PreserveResourceForks: true |