From 502acb8eb29c83f501dfd666088c1344862bb004 Mon Sep 17 00:00:00 2001 From: hynsey Date: Wed, 4 Oct 2023 23:26:55 +0100 Subject: [PATCH] Update config.php.sample Added cookie variables to allow wildcard cookies to be set for the domain by other non-PHP web apps on the same TLD, or set a path for the cookie domain if required to be different than '/' --- rootfs/flarum/app/config.php.sample | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/rootfs/flarum/app/config.php.sample b/rootfs/flarum/app/config.php.sample index 925f43b..4b1d703 100644 --- a/rootfs/flarum/app/config.php.sample +++ b/rootfs/flarum/app/config.php.sample @@ -18,4 +18,8 @@ 'api' => 'api', 'admin' => 'admin', ), + 'cookie' => array ( + 'path' => '', + 'domain' => '', + ), );