From a4d13d67d4a2b87c9816e93eb0cbcf7f93266cb1 Mon Sep 17 00:00:00 2001 From: Gerrit Gogel Date: Fri, 22 Jan 2021 23:49:18 +0100 Subject: [PATCH] change https env variable name --- seafile/scripts/bootstrap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seafile/scripts/bootstrap.py b/seafile/scripts/bootstrap.py index 35fb1aa..4b00c56 100644 --- a/seafile/scripts/bootstrap.py +++ b/seafile/scripts/bootstrap.py @@ -29,7 +29,7 @@ generated_dir = '/bootstrap/generated' def is_https(): - return get_conf('SEAFILE_SERVER_LETSENCRYPT', 'false').lower() == 'true' + return get_conf('HTTPS', 'false').lower() == 'true' def parse_args(): ap = argparse.ArgumentParser()