Browse Source

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.
pull/7/head
Richard Tweed 1 year ago committed by GitHub
parent
commit
55b0be9f8c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      infrastructure/server/fabric_api_server.py

2
infrastructure/server/fabric_api_server.py

@ -136,4 +136,4 @@ def extwis():
# Run the application # Run the application
if __name__ == "__main__": if __name__ == "__main__":
app.run(host="1.1.1.1", port=13337, debug=True) app.run(host="::1", port=13337, debug=True)

Loading…
Cancel
Save