diff options
-rwxr-xr-x | inverter-http-proxy | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inverter-http-proxy b/inverter-http-proxy index b0ec7dd..c658e1e 100755 --- a/inverter-http-proxy +++ b/inverter-http-proxy @@ -47,4 +47,4 @@ if __name__ == '__main__': app = web.Application() app.add_routes(routes) - web.run_app(app) + web.run_app(app, host=args.host, port=args.port) |