| Server IP : 173.209.174.21 / Your IP : 216.73.216.89 Web Server : Apache/2.4.58 (Ubuntu) System : Linux wcfs-server 6.8.0-124-generic #124-Ubuntu SMP PREEMPT_DYNAMIC Tue May 26 13:00:45 UTC 2026 x86_64 User : nodor ( 1000) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/thelittlebigshow/self-hosted/ |
Upload File : |
<?php
$selfHostedLocalConfig = __DIR__ . '/self_hosted_local_config.php';
if (is_file($selfHostedLocalConfig)) {
require_once $selfHostedLocalConfig;
}
if (!defined('SELF_HOSTED_MODE')) {
define('SELF_HOSTED_MODE', false);
}
if (!defined('SELF_HOSTED_LICENSE_API_URL')) {
define('SELF_HOSTED_LICENSE_API_URL', 'https://app.housetabpro.com/self_hosted_license_api.php');
}
if (!defined('SELF_HOSTED_LICENSE_STATE_FILE')) {
define('SELF_HOSTED_LICENSE_STATE_FILE', __DIR__ . '/self_hosted_license_state.json');
}
if (!defined('SELF_HOSTED_VALIDATE_INTERVAL_SECONDS')) {
define('SELF_HOSTED_VALIDATE_INTERVAL_SECONDS', 86400);
}
if (!defined('SELF_HOSTED_DB_HOST')) {
define('SELF_HOSTED_DB_HOST', 'localhost');
}
if (!defined('SELF_HOSTED_DB_NAME')) {
define('SELF_HOSTED_DB_NAME', '');
}
if (!defined('SELF_HOSTED_DB_USER')) {
define('SELF_HOSTED_DB_USER', '');
}
if (!defined('SELF_HOSTED_DB_PASSWORD')) {
define('SELF_HOSTED_DB_PASSWORD', '');
}
if (!defined('SELF_HOSTED_STORE_NAME')) {
define('SELF_HOSTED_STORE_NAME', 'HouseTab Pro');
}
if (!defined('SELF_HOSTED_INSTALL_BLOCKED_HOSTS')) {
define('SELF_HOSTED_INSTALL_BLOCKED_HOSTS', ['app.housetabpro.com']);
}
if (!defined('SELF_HOSTED_APP_SESSION_TIMEOUT_SECONDS')) {
define('SELF_HOSTED_APP_SESSION_TIMEOUT_SECONDS', 3600);
}