From 70e809fa921cf3e7828d70922a1762eff04ccff2 Mon Sep 17 00:00:00 2001 From: Eldad Fux Date: Sun, 28 Mar 2021 15:36:15 +0300 Subject: [PATCH] Fixed default value for https force option --- app/config/variables.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/config/variables.php b/app/config/variables.php index cd7db9ba66..20b49bd9e8 100644 --- a/app/config/variables.php +++ b/app/config/variables.php @@ -27,7 +27,7 @@ return [ 'name' => '_APP_OPTIONS_FORCE_HTTPS', 'description' => 'Allows you to force HTTPS connection to your API. This feature redirects any HTTP call to HTTPS and adds the \'Strict-Transport-Security\' header to all HTTP responses. By default, set to \'disabled\'. To enable, set to \'enabled\'. This feature will work only when your ports are set to default 80 and 443.', 'introduction' => '', - 'default' => 'enabled', + 'default' => 'disabled', 'required' => false, 'question' => '', ],