diff options
author | Evgeny Zinoviev <me@ch1p.io> | 2021-08-03 23:09:52 +0300 |
---|---|---|
committer | Evgeny Zinoviev <me@ch1p.io> | 2021-08-03 23:09:52 +0300 |
commit | ab6f18e8efdd0ef1e5edda710e9f495e0c92e5ed (patch) | |
tree | f5578542920186dbbda37b4540a9cad27ddf1ade | |
parent | 71c51123a08fed950399a95c0c23b5b1a0cf0083 (diff) |
fix --host and --port
-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) |