From 3ea8513fb5431b65e827a9fb7bf72395e12db34f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Fri, 1 Aug 2025 02:04:07 +0200 Subject: [PATCH] nixos/prosody: disable http_files per default as it requires configuration to not break http_file_share --- nixos/modules/services/networking/prosody.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/networking/prosody.nix b/nixos/modules/services/networking/prosody.nix index e92d5c33ee7b..cd69f827b99c 100644 --- a/nixos/modules/services/networking/prosody.nix +++ b/nixos/modules/services/networking/prosody.nix @@ -182,7 +182,7 @@ let http_files = mkOption { type = types.bool; - default = true; + default = false; description = "Serve static files from a directory over HTTP"; };