diff --git a/truenas-gotify.py b/truenas-gotify.py index efbd238..56d1083 100755 --- a/truenas-gotify.py +++ b/truenas-gotify.py @@ -11,7 +11,8 @@ # Example: cGVla2Fib29v GOTIFY_TOKEN = os.environ.get("GOTIFY_TOKEN") -LISTEN_HOST = "127.0.0.1" +# The ip address the service should listen on +LISTEN_HOST = os.environ.get("LISTEN_HOST", "127.0.0.1") PORT = 31662