From f05af9f3217e55a6e2d2103916bc16c26d86f3f6 Mon Sep 17 00:00:00 2001 From: Hugo Landau Date: Thu, 13 Nov 2014 11:14:15 +0000 Subject: [PATCH] defaults --- server/server.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/server.go b/server/server.go index ff3eadd..920b309 100644 --- a/server/server.go +++ b/server/server.go @@ -21,8 +21,8 @@ type Server struct { type ServerConfig struct { Bind string `default:":53" usage:"Address to bind to (e.g. 0.0.0.0:53)"` - PublicKey string `default:"ncdns.key" usage:"Path to the DNSKEY KSK public key file"` - PrivateKey string `default:"ncdns.private" usage:"Path to the KSK's corresponding private key file"` + PublicKey string `default:"" usage:"Path to the DNSKEY KSK public key file"` + PrivateKey string `default:"" usage:"Path to the KSK's corresponding private key file"` ZonePublicKey string `default:"" usage:"Path to the DNSKEY ZSK public key file; if one is not specified, a temporary one is generated on startup and used only for the duration of that process"` ZonePrivateKey string `default:"" usage:"Path to the ZSK's corresponding private key file"`