From 1c262c49792277a6ef516c738e3d8d6710cd0693 Mon Sep 17 00:00:00 2001 From: Vijay Sapkota Date: Thu, 28 Dec 2023 00:13:25 +0100 Subject: [PATCH] system.urlPolicy config can be set from env variable (#1063) --- config/system.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/system.php b/config/system.php index 171ed1e74f..9e2a669f92 100644 --- a/config/system.php +++ b/config/system.php @@ -193,7 +193,7 @@ | */ - 'urlPolicy' => 'force', + 'urlPolicy' => env('IGNITER_URL_POLICY', 'detect'), /* |--------------------------------------------------------------------------