From c1b65ba3cfc155cc2e8418656bc1d10435660c6f Mon Sep 17 00:00:00 2001 From: callebtc <93376500+callebtc@users.noreply.github.com> Date: Tue, 13 Sep 2022 22:16:59 +0300 Subject: [PATCH] no https yet --- core/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/settings.py b/core/settings.py index c848330..6f1b81e 100644 --- a/core/settings.py +++ b/core/settings.py @@ -16,7 +16,7 @@ MINT_PORT = env.int("MINT_PORT", default=3338) if MINT_HOST == "127.0.0.1": MINT_URL = f"http://{MINT_HOST}:{MINT_PORT}" else: - MINT_URL = f"https://{MINT_HOST}:{MINT_PORT}" + MINT_URL = f"http://{MINT_HOST}:{MINT_PORT}" LNBITS_ENDPOINT = env.str("LNBITS_ENDPOINT", default=None) LNBITS_KEY = env.str("LNBITS_KEY", default=None)