31 lines
1000 B
PHP
31 lines
1000 B
PHP
<?php
|
|
if (!defined('ASSET_VERSION')) {
|
|
define('ASSET_VERSION', time()); // oder deine aktuelle Version
|
|
}
|
|
|
|
// Domain-Konfiguration (kann pro Umgebung angepasst werden)
|
|
if (!defined('APP_DOMAIN_PRIMARY')) {
|
|
define('APP_DOMAIN_PRIMARY', 'staging.usbcheck.it');
|
|
}
|
|
if (!defined('APP_URL_PRIMARY')) {
|
|
define('APP_URL_PRIMARY', 'https://' . APP_DOMAIN_PRIMARY);
|
|
}
|
|
if (!defined('APP_DOMAIN_FAKECHECK')) {
|
|
define('APP_DOMAIN_FAKECHECK', 'staging.ismyusbfake.com');
|
|
}
|
|
if (!defined('APP_URL_FAKECHECK')) {
|
|
define('APP_URL_FAKECHECK', 'https://' . APP_DOMAIN_FAKECHECK);
|
|
}
|
|
|
|
// Matomo Einstellungen
|
|
define('MATOMO_URL', 'https://matomo.my-statistics.info/');
|
|
define('MATOMO_ENABLED', false);
|
|
define('MATOMO_SITE_ID', 8);
|
|
$env = 'staging';
|
|
$baseUrl = 'https://statging.usbcheck.it';
|
|
$apiBaseUrl = 'https://api.staging.usbcheck.it';
|
|
|
|
// Diese Werte später ins Template schieben:
|
|
$GLOBALS['usb_env'] = $env;
|
|
$GLOBALS['usb_base_url'] = $baseUrl;
|
|
$GLOBALS['usb_api_base'] = $apiBaseUrl; |