The installed configure.php files use const instead of define. Which is correct ?
Do I need to add the "define('ENABLE_SSL', true);" to a new install of 1.0.7.14 ?
If the install showed a green thumbs up against SSL, should it add the enable line to config ?
const HTTP_SERVER = 'https://abcd.com';
const COOKIE_OPTIONS = [
'lifetime' => 0,
'domain' => 'abcd.com',
'path' => '/shop2/',
'samesite' => 'Lax',
'secure' => true,
];