- Removed old migration scripts for profiles and users to RBAC. - Updated config redirector to utilize environment variables for configuration loading. - Added .gitignore files to firmware, log, and marketing directories to prevent unnecessary file tracking. - Introduced new configuration files for acceptance, development, and production environments with relevant settings. - Enhanced settings files to include exception lists, security keys, and database settings.
57 lines
1.8 KiB
PHP
57 lines
1.8 KiB
PHP
<?php
|
|
require 'settingsprofiles.php';
|
|
|
|
// This will change the title on the website
|
|
define('site_name','Customer Portal');
|
|
define('site_name_footer','Total Safety Solutions');
|
|
// This will change the title on browser TAB
|
|
define('site_title','Total Safety Solutions');
|
|
//Scriptversion
|
|
define('script_version','v12');
|
|
//Enable VeLiTi-issue mgt
|
|
define('veliti_cim',false);
|
|
//Enable VeLiTi-analytics
|
|
define('veliti_analytics',true);
|
|
//Rewrite rule
|
|
define('rewrite_url',false);
|
|
define('news','');
|
|
//maintenance_mode
|
|
define('maintenance_mode_communication',false);
|
|
define('maintenance_mode_notification','Notice: The Portal is offline due to infrastructure services issues');
|
|
define('maintenance_mode',false);
|
|
define('maintenance_mode_text','Portal not accessible due to infrastructure services issues.');
|
|
define('debug',false);
|
|
define('debug_id','114');
|
|
|
|
/*Security*/
|
|
// Page security
|
|
define('page_security_key','secure_admin_342642');
|
|
define('cronjob_number','43256');
|
|
define('header_security',false);
|
|
|
|
/* Email */
|
|
// The from email that will appear on the customer's order details email
|
|
define('mail_from','CustomerPortal');
|
|
// Your email
|
|
define('email','portal@totalsafetysolutions.nl');
|
|
//Additional phpmailer-settings
|
|
define('email_host_name','');
|
|
define('email_reply_to','service@totalsafetysolutions.nl');
|
|
define('email_outgoing_pw','test1234');
|
|
define('email_outgoing_port','587');
|
|
define('email_outgoing_security','tls');
|
|
|
|
/*Appearance*/
|
|
//Icon
|
|
define('icon_image','/assets/images/TSS-logo3.png');
|
|
define('color','#005655c2');
|
|
define('color_accent','#2FAC66');
|
|
define('emaillogo','/assets/images/tss-green.png');
|
|
|
|
|
|
/*Default Users*/
|
|
define('software_update_user','EMP-updater');
|
|
define('software_update_pw','EMP-updater');
|
|
define('interface_user','interface@test.nl');
|
|
define('interface_pw','test1234');
|