From 55b0be9f8c6cb964b1e915fb14efbe06ff5d0bb1 Mon Sep 17 00:00:00 2001 From: Richard Tweed Date: Tue, 30 Jan 2024 14:48:57 +0000 Subject: [PATCH] Only list on localhost by default for fabric_api_server.py 1.1.1.1 is owned by another company, so the example IP should probably either be a local ip only (to prevent external use) or 0.0.0.0 if the assumption is that the server should be public. --- infrastructure/server/fabric_api_server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infrastructure/server/fabric_api_server.py b/infrastructure/server/fabric_api_server.py index 1503dd9..3629748 100644 --- a/infrastructure/server/fabric_api_server.py +++ b/infrastructure/server/fabric_api_server.py @@ -136,4 +136,4 @@ def extwis(): # Run the application if __name__ == "__main__": - app.run(host="1.1.1.1", port=13337, debug=True) + app.run(host="::1", port=13337, debug=True)