summaryrefslogtreecommitdiff
path: root/args
diff options
context:
space:
mode:
Diffstat (limited to 'args')
-rw-r--r--args/args.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/args/args.go b/args/args.go
index 8465fc8..09c96be 100644
--- a/args/args.go
+++ b/args/args.go
@@ -37,7 +37,7 @@ func GetArgs() (*Arguments, error) {
databasePath := flag.String("database-path", "./hatecomputers.db", "Path to the SQLite database")
templatePath := flag.String("template-path", "./templates", "Path to the template directory")
staticPath := flag.String("static-path", "./static", "Path to the static directory")
- dnsResolvers := flag.String("dns-resolvers", "1.1.1.1,1.0.0.1", "Comma-separated list of DNS resolvers")
+ dnsResolvers := flag.String("dns-resolvers", "1.1.1.1:53,1.0.0.1:53", "Comma-separated list of DNS resolvers")
scheduler := flag.Bool("scheduler", false, "Run scheduled jobs via cron")
migrate := flag.Bool("migrate", false, "Run the migrations")