From af07691139440b1e028924c7bf12c7aecaf26037 Mon Sep 17 00:00:00 2001 From: mans17 Date: Sat, 3 May 2025 15:29:30 +0200 Subject: [PATCH] Update apache.mdx (#430) I guess the whole purpose is to avoid having 3001 opened to the world. This is the easyest way to do it (iptables might be an option too) Signed-off-by: mans17 --- docs/docs/admin/environments/apache.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/admin/environments/apache.mdx b/docs/docs/admin/environments/apache.mdx index b3f9b4f..e38f51c 100644 --- a/docs/docs/admin/environments/apache.mdx +++ b/docs/docs/admin/environments/apache.mdx @@ -119,7 +119,7 @@ Make sure to add a separate configuration file for the listener on port 3001: ```text # /etc/httpd/conf.d/listener-3001.conf -Listen 3001 +Listen 127.0.0.1:3001 ``` This can be repeated for multiple sites. Anubis does not care about the HTTP `Host` header and will happily cope with multiple websites via the same instance.