allow multiple binds
This commit is contained in:
parent
a999024ddf
commit
f34cd88de1
@ -4,8 +4,9 @@
|
||||
|
||||
```json
|
||||
{
|
||||
"host": "127.0.0.1",
|
||||
"port": 9250,
|
||||
"binds": [
|
||||
"127.0.0.1:9250"
|
||||
],
|
||||
"log": "-",
|
||||
"buffer-size": "4KiB",
|
||||
"max-size": "2GB",
|
||||
|
@ -90,7 +90,7 @@ def main():
|
||||
asyncio.run(serve(
|
||||
api,
|
||||
Config().from_mapping(
|
||||
bind=[f"{CONFIG['host']}:{CONFIG['port']}"],
|
||||
bind=CONFIG['binds'],
|
||||
accesslog='-'
|
||||
)
|
||||
))
|
||||
|
Loading…
Reference in New Issue
Block a user