From edc76ebb1b3963694e4711789b3c20fb7d0105f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20B=C3=A4dorf?= Date: Sun, 29 Oct 2023 22:14:13 +0100 Subject: [PATCH] chore: add search.pub.solar dns entry --- hosts/nachtigall/apps/searx.nix | 2 +- terraform/dns.tf | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/hosts/nachtigall/apps/searx.nix b/hosts/nachtigall/apps/searx.nix index 8e71719..8c2e8e7 100644 --- a/hosts/nachtigall/apps/searx.nix +++ b/hosts/nachtigall/apps/searx.nix @@ -62,7 +62,7 @@ # it decreases the privacy, since the browser can records the page titles. query_in_title = false; # infinite_scroll: When true, automatically loads the next page when scrolling to bottom of the current page. - infinite_scroll = false; + infinite_scroll = true; }; }; }; diff --git a/terraform/dns.tf b/terraform/dns.tf index c97b39e..79200e1 100644 --- a/terraform/dns.tf +++ b/terraform/dns.tf @@ -113,6 +113,11 @@ resource "namecheap_domain_records" "pub-solar" { type = "CNAME" address = "nachtigall.pub.solar." } + record { + hostname = "search" + type = "CNAME" + address = "nachtigall.pub.solar." + } record { hostname = "mastodon" type = "CNAME"