set localhost to public
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone Build is passing

This commit is contained in:
Kasper Juul Hermansen 2022-07-18 13:40:17 +02:00
parent 2608b10efa
commit 66358bdd05
Signed by: kjuulh
GPG Key ID: 57B6E1465221F912

View File

@ -77,7 +77,7 @@ impl Server {
.make_span_with(DefaultMakeSpan::default().include_headers(true)), .make_span_with(DefaultMakeSpan::default().include_headers(true)),
); );
let addr = SocketAddr::from(([127, 0, 0, 1], 3000)); let addr = SocketAddr::from(([0, 0, 0, 0], 3000));
Server { app, addr } Server { app, addr }
} }