Skip to content

Commit

Permalink
Removed unnecessary trailing slash on root URI
Browse files Browse the repository at this point in the history
  • Loading branch information
chrismaddalena committed Jan 15, 2025
1 parent 7770cf9 commit df0d84e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/internal/env.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ func setBloodHoundConfigDefaultValues() {
// Base config
bhEnv.SetDefault("bind_addr", "0.0.0.0:8080")
bhEnv.SetDefault("metrics_port", ":2112")
bhEnv.SetDefault("root_url", "http://127.0.0.1:8080/")
bhEnv.SetDefault("root_url", "http://127.0.0.1:8080")
bhEnv.SetDefault("work_dir", "/opt/bloodhound/work")
bhEnv.SetDefault("log_level", "INFO")
bhEnv.SetDefault("log_path", "bloodhound.log")
Expand Down

0 comments on commit df0d84e

Please sign in to comment.