Skip to content

Commit

Permalink
Fix default configuration.
Browse files Browse the repository at this point in the history
  • Loading branch information
brocaar committed Aug 4, 2023
1 parent c5d4a15 commit 92ed7ed
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cmd/chirpstack-fuota-server/cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ func init() {
viper.SetDefault("postgresql.automigrate", true)
viper.SetDefault("postgresql.max_idle_connections", 2)

viper.SetDefault("application_server.event_handler.marshaler", "protobuf")
viper.SetDefault("application_server.event_handler.http.bind", "0.0.0.0:8090")
viper.SetDefault("application_server.api.server", "localhost:8080")
viper.SetDefault("chirpstack.event_handler.marshaler", "protobuf")
viper.SetDefault("chirpstack.event_handler.http.bind", "0.0.0.0:8090")
viper.SetDefault("chirpstack.api.server", "localhost:8080")
viper.SetDefault("fuota_server.api.bind", "0.0.0.0:8070")

rootCmd.AddCommand(configCmd)
Expand Down

0 comments on commit 92ed7ed

Please sign in to comment.