From ac4c5806865f26a09a73f1f6b136227c8dd7c9b4 Mon Sep 17 00:00:00 2001 From: Dimakow Date: Sun, 23 Nov 2025 14:41:05 +0100 Subject: [PATCH] Change 'host' to 'address' in Unix installation guide Updated configuration settings in Unix.md to use 'address' instead of 'host'. --- docs/Installation/Unix.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/Installation/Unix.md b/docs/Installation/Unix.md index 3e001ceb..6bcddde2 100644 --- a/docs/Installation/Unix.md +++ b/docs/Installation/Unix.md @@ -276,14 +276,14 @@ To override the default configuration, you can add the following to `/.git/Stirl ```yaml server: - host: 0.0.0.0 + address: 0.0.0.0 port: 3000 ``` For systemd add in the .env file (see run as service for setting environment variables): ```bash -SERVER_HOST="0.0.0.0" +SERVER_ADDRESS="0.0.0.0" SERVER_PORT="3000" ```