Skip to content

Commit f1a7e46

Browse files
committed
fix DEFAULT_BIND
1 parent 635b9db commit f1a7e46

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/web/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ pub(crate) fn encode_url_path(path: &str) -> String {
6565
utf8_percent_encode(path, PATH).to_string()
6666
}
6767

68-
const DEFAULT_BIND: SocketAddr = SocketAddr::new(IpAddr::V4(Ipv4Addr::new(127, 0, 0, 1)), 8080);
68+
const DEFAULT_BIND: SocketAddr = SocketAddr::new(IpAddr::V4(Ipv4Addr::new(0, 0, 0, 0)), 3000);
6969

7070
#[derive(Debug)]
7171
struct MatchVersion {

0 commit comments

Comments
 (0)