����JFIF��x�x����'
| Server IP : 78.140.185.180  /  Your IP : 216.73.216.51 Web Server : LiteSpeed System : Linux cpanel13.v.fozzy.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : builderbox ( 1072) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/self/root/proc/self/root/proc/self/root/proc/1271035/root/var/softaculous/yeti/ | 
| Upload File : | 
<?php
/**
 * Configuration file.
 * This file is auto-generated.
 *
 * @package Config
 *
 * @copyright YetiForce S.A.
 * @license   YetiForce Public License 6.5 (licenses/LicenseEN.txt or yetiforce.com)
 */
namespace Config;
/**
 * Configuration file: Config\Db.
 */
class Db
{
	/** Gets the database server */
	public static $db_server = '[[softdbhost]]';
	/** Gets the database port */
	public static $db_port = '3306';
	/** Gets the database user name */
	public static $db_username = '[[softdbuser]]';
	/** Gets the database password */
	public static $db_password = '[[softdbpass]]';
	/** Gets the database name */
	public static $db_name = '[[softdb]]';
	/** Gets the database type */
	public static $db_type = 'mysql';
	/**
	 * Gets host name.
	 */
	public static function db_hostname()
	{
		return self::$db_server . ':' . self::$db_port;
	}
	/**
	 * Basic database configuration.
	 */
	public static function base()
	{
		return [
			'dsn' => self::$db_type . ':host=' . self::$db_server . ';dbname=' . self::$db_name . ';port=' . self::$db_port,
			'host' => self::$db_server,
			'port' => self::$db_port,
			'username' => self::$db_username,
			'password' => self::$db_password,
			'dbName' => self::$db_name,
			'tablePrefix' => 'yf_',
			'charset' => 'utf8',
		];
	}
}