diff options
| author | Xe Iaso <me@xeiaso.net> | 2025-03-20 16:58:49 -0400 |
|---|---|---|
| committer | Xe Iaso <me@xeiaso.net> | 2025-03-20 16:58:49 -0400 |
| commit | c88775bb8a0392800d3807cc01d1a93d089b67f9 (patch) | |
| tree | a91b43ad22d4bfc497240f61bb2d5cbf44583bc1 /cmd/anubis | |
| parent | eeaed6a317d27ce7de82774291cc87bef66e6244 (diff) | |
| download | anubis-c88775bb8a0392800d3807cc01d1a93d089b67f9.tar.xz anubis-c88775bb8a0392800d3807cc01d1a93d089b67f9.zip | |
cmd/anubis: lower default difficulty to 4
Signed-off-by: Xe Iaso <me@xeiaso.net>
Diffstat (limited to 'cmd/anubis')
| -rw-r--r-- | cmd/anubis/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/anubis/main.go b/cmd/anubis/main.go index c71d368..52b38d8 100644 --- a/cmd/anubis/main.go +++ b/cmd/anubis/main.go @@ -38,7 +38,7 @@ import ( var ( bind = flag.String("bind", ":8923", "TCP port to bind HTTP to") - challengeDifficulty = flag.Int("difficulty", 5, "difficulty of the challenge") + challengeDifficulty = flag.Int("difficulty", 4, "difficulty of the challenge") metricsBind = flag.String("metrics-bind", ":9090", "TCP port to bind metrics to") robotsTxt = flag.Bool("serve-robots-txt", false, "serve a robots.txt file that disallows all robots") policyFname = flag.String("policy-fname", "", "full path to anubis policy document (defaults to a sensible built-in policy)") |
