allow multiple binds

This commit is contained in:
Kristian Krsnik 2024-04-12 12:44:30 +02:00
parent a999024ddf
commit f34cd88de1
Signed by: Kristian
GPG Key ID: FD1330AC9F909E85
2 changed files with 4 additions and 3 deletions

View File

@ -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",

View File

@ -90,7 +90,7 @@ def main():
asyncio.run(serve(
api,
Config().from_mapping(
bind=[f"{CONFIG['host']}:{CONFIG['port']}"],
bind=CONFIG['binds'],
accesslog='-'
)
))