From 5881a795afc6560111637fae3efc4c96f108ce06 Mon Sep 17 00:00:00 2001 From: Astro Date: Fri, 12 Nov 2021 00:24:40 +0100 Subject: [PATCH] scrape: enable http autoindex --- hosts/containers/scrape/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hosts/containers/scrape/default.nix b/hosts/containers/scrape/default.nix index 7f246620..b4fbca35 100644 --- a/hosts/containers/scrape/default.nix +++ b/hosts/containers/scrape/default.nix @@ -37,6 +37,9 @@ in { forceSSL = true; enableACME = true; root = config.users.users.scrape.home; + extraConfig = '' + autoindex on; + ''; }; }; networking.firewall.allowedTCPPorts = [ 80 443 ];