Commit
Author: Kevin Schoon [me@kevinschoon.com]
Hash: d7cc4ea25172cf6abec0744977c3c6e48b3a3915
Timestamp: Sat, 01 Jun 2024 14:53:21 +0000 (8 months ago)

+1 -1 +/-1 browse
change default http address from localhost -> 127.0.0.1
1diff --git a/ayllu/src/config.rs b/ayllu/src/config.rs
2index a4d6b61..590ef41 100644
3--- a/ayllu/src/config.rs
4+++ b/ayllu/src/config.rs
5 @@ -111,7 +111,7 @@ pub struct Http {
6
7 impl Http {
8 fn default_address() -> String {
9- String::from("localhost:8080")
10+ String::from("127.0.0.1:8080")
11 }
12 }
13