You've already forked authentication-service
mirror of
https://github.com/matrix-org/matrix-authentication-service.git
synced 2025-07-31 09:24:31 +03:00
Fix the default listener configuration
This commit is contained in:
@ -358,8 +358,9 @@ impl Default for HttpConfig {
|
|||||||
resources: vec![Resource::Health],
|
resources: vec![Resource::Health],
|
||||||
tls: None,
|
tls: None,
|
||||||
proxy_protocol: false,
|
proxy_protocol: false,
|
||||||
binds: vec![BindConfig::Address {
|
binds: vec![BindConfig::Listen {
|
||||||
address: "localhost:8081".into(),
|
host: Some("localhost".to_owned()),
|
||||||
|
port: 8081,
|
||||||
}],
|
}],
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
@ -97,7 +97,8 @@
|
|||||||
{
|
{
|
||||||
"binds": [
|
"binds": [
|
||||||
{
|
{
|
||||||
"address": "localhost:8081"
|
"host": "localhost",
|
||||||
|
"port": 8081
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "internal",
|
"name": "internal",
|
||||||
|
Reference in New Issue
Block a user