From 9bbd23cb30620f315f4b5a7e94444587a88dcd3c Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Thu, 4 Jul 2019 16:58:51 +0300 Subject: Change: only listen on localhost, now that there's haproxy/TLS --- api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api.py b/api.py index 8c775a2..7544f0f 100755 --- a/api.py +++ b/api.py @@ -36,7 +36,7 @@ import bottle import jwt -HOST = '0.0.0.0' +HOST = '127.0.0.1' PORT = 2222 -- cgit v1.2.1