From ad09f82c3c540e376307f77d9589072580d11519 Mon Sep 17 00:00:00 2001 From: Lothar Serra Mari Date: Mon, 9 Jun 2025 14:56:30 +0200 Subject: [PATCH] docs(admin/environments): Prefer IPv6 over IPv4 for apache2 listener directive (#628) Signed-off-by: Lothar Serra Mari --- docs/docs/admin/environments/apache.mdx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/docs/admin/environments/apache.mdx b/docs/docs/admin/environments/apache.mdx index 509737f..fb1d41b 100644 --- a/docs/docs/admin/environments/apache.mdx +++ b/docs/docs/admin/environments/apache.mdx @@ -120,6 +120,14 @@ Make sure to add a separate configuration file for the listener on port 3001: ```text # /etc/httpd/conf.d/listener-3001.conf +Listen [::1]:3001 +``` + +In case you are running an IPv4-only system, use the following configuration instead: + +```text +# /etc/httpd/conf.d/listener-3001.conf + Listen 127.0.0.1:3001 ```