aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Zinoviev <me@ch1p.io>2021-08-03 23:09:52 +0300
committerEvgeny Zinoviev <me@ch1p.io>2021-08-03 23:09:52 +0300
commitab6f18e8efdd0ef1e5edda710e9f495e0c92e5ed (patch)
treef5578542920186dbbda37b4540a9cad27ddf1ade
parent71c51123a08fed950399a95c0c23b5b1a0cf0083 (diff)
fix --host and --port
-rwxr-xr-xinverter-http-proxy2
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)