1
0
mirror of https://github.com/scsibug/nostr-rs-relay.git synced 2025-04-14 01:49:56 -04:00

config: change default websocket port

This commit is contained in:
Greg Heartsfield 2021-12-11 16:57:55 -06:00
parent ee9efab2f7
commit d79e0a59f5

@ -24,7 +24,7 @@ fn main() -> Result<(), Error> {
let _ = env_logger::try_init();
let addr = env::args()
.nth(1)
.unwrap_or_else(|| "0.0.0.0:8888".to_string());
.unwrap_or_else(|| "0.0.0.0:8080".to_string());
// configure tokio runtime
let rt = Builder::new_multi_thread()
.enable_all()