]> git.ipfire.org Git - ipfire-2.x.git/commitdiff
knot-resolver: Don't explicitely configure the CA file
authorMichael Tremer <michael.tremer@ipfire.org>
Wed, 20 May 2026 17:20:35 +0000 (18:20 +0100)
committerMichael Tremer <michael.tremer@ipfire.org>
Thu, 21 May 2026 15:28:02 +0000 (15:28 +0000)
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
config/knot-resolver/config.yaml

index 10f384cae621a38e4ddb59a09757ab55738f042f..b462c9df1eae1fdebf9fc99f4f8dbdb78500b2bd 100644 (file)
@@ -40,8 +40,6 @@ lua:
     local csv = require("csv")
     local ffi = require("ffi")
 
-    local CA_FILE = "/etc/ssl/cert.pem"
-
     -- Helper function to load a key/value configuration file
     local function load_settings(path)
       local settings = {}
@@ -175,7 +173,7 @@ lua:
         if status == "enabled" then
           if proto == "TLS" then
             table.insert(forwarders, {
-              address, hostname=hostname, ca_file=CA_FILE
+              address, hostname=hostname,
             })
           else
             table.insert(forwarders, address)