Skip to content

Commit

Permalink
fix(config)!: change default ws, tcp, http ports (#2360)
Browse files Browse the repository at this point in the history
fix(config): change default ports
  • Loading branch information
kmd-fl authored Sep 4, 2024
1 parent 865b963 commit e4dce70
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crates/server-config/src/defaults.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ pub fn default_transport() -> Transport {
}

pub fn default_tcp_port() -> u16 {
7777
977
}

pub fn default_listen_ip() -> IpAddr {
Expand Down Expand Up @@ -88,11 +88,11 @@ pub fn default_cpus_range() -> Option<CoreRange> {
}

pub fn default_websocket_port() -> u16 {
9999
999
}

pub fn default_http_port() -> u16 {
18080
918
}

pub fn default_metrics_enabled() -> bool {
Expand Down

0 comments on commit e4dce70

Please sign in to comment.