36 lines
1.2 KiB
PHP
36 lines
1.2 KiB
PHP
<?php
|
|
$g_hostname = 'mantisbt-mariadb';
|
|
$g_db_type = 'mysqli';
|
|
$g_database_name = 'mantisbt';
|
|
$g_db_username = 'mantisbt';
|
|
$g_db_password = 'MantisDBPassword_2024!';
|
|
|
|
$g_default_timezone = 'Europe/Berlin';
|
|
|
|
$g_crypto_master_salt = 'shJaiK32W2tABdTZjwRUrZN+90AWLHXaLKiOt1Fwpaw=';
|
|
|
|
$g_path = 'https://mantisbt.innovation-hub-niedersachsen.de/';
|
|
|
|
# Email settings
|
|
$g_webmaster_email = 'inno-netz@zpd.polizei.niedersachsen.de';
|
|
$g_from_email = 'mantisbt@innovation-hub-niedersachsen.de';
|
|
$g_return_path_email = 'mantisbt@innovation-hub-niedersachsen.de';
|
|
$g_from_name = 'InnoHub MantisBT';
|
|
|
|
# SMTP Configuration
|
|
$g_phpMailer_method = PHPMAILER_METHOD_SMTP;
|
|
$g_smtp_host = '192.168.4.125';
|
|
$g_smtp_port = 25;
|
|
$g_enable_email_notification = ON;
|
|
|
|
# File upload - match PHP limit
|
|
$g_max_file_size = 2000000;
|
|
$g_allowed_files = 'png,gif,jpg,jpeg,pdf,doc,docx,xls,xlsx,ppt,pptx,txt,zip,rar,7z';
|
|
|
|
# Site settings
|
|
$g_window_title = 'InnoHub Bug Tracker';
|
|
$g_logo_image = 'images/mantis_logo.png';
|
|
|
|
# Security - disable after installation!
|
|
# $g_allow_signup = OFF;
|