|
@@ -52,6 +52,7 @@ async fn index(req: tide::Request<ServerStateWrapper>) -> tide::Result<tide::Res
|
|
|
pub async fn run_server(
|
|
|
db: schema::UIDCDatabase,
|
|
|
config: config::Config,
|
|
|
+ bind: &str,
|
|
|
port: u16,
|
|
|
) -> Result<(), UIDCError> {
|
|
|
let core_state = Box::leak(Box::new(ServerState {
|
|
@@ -88,7 +89,7 @@ pub async fn run_server(
|
|
|
oidc::oidc_server(app.at("/:realm/"));
|
|
|
um::um_server(app.at("/:realm/"));
|
|
|
|
|
|
- app.listen(("127.0.0.1", port))
|
|
|
+ app.listen((bind, port))
|
|
|
.await
|
|
|
.map_err(|_| UIDCError::Abort("couldn't listen on port"))?;
|
|
|
|