diff --git a/streamtg.py b/streamtg.py index 8a4ce0b..155744d 100644 --- a/streamtg.py +++ b/streamtg.py @@ -83,7 +83,7 @@ async def main(): await client.start(bot_token=config['telegram'].get('bot_token')) runner = web.AppRunner(app) await runner.setup() - site = web.TCPSite(runner, '127.0.0.1', port) + site = web.TCPSite(runner, '0.0.0.0', port) await site.start() await client.run_until_disconnected()