1
0
Fork 0
template/site-config.php

40 lines
1.2 KiB
PHP
Raw Permalink Normal View History

2024-04-25 21:55:08 +02:00
<?php
2024-04-25 22:00:49 +02:00
$site_title = null;
2024-04-25 21:55:08 +02:00
$site_protocol = 'https';
2024-04-25 22:00:49 +02:00
$site_domain = null;
2024-04-25 21:55:08 +02:00
$site_subdomain = null;
2024-11-18 17:55:28 +01:00
$site_url = (empty($site_domain) ? null : $site_protocol.'://'.(empty($site_subdomain) ? null : $site_subdomain.'.') . $site_domain);
2024-04-25 21:55:08 +02:00
$site_url_current = sprintf(
'%s://%s/%s',
isset($_SERVER['HTTPS']) ? 'https' : 'http',
$_SERVER['HTTP_HOST'],
trim($_SERVER['REQUEST_URI'], '/\\')
);
2024-04-28 14:31:08 +02:00
$site_url_cdn = null;
2024-04-25 21:55:08 +02:00
$site_favicon = 'data:image/x-icon;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQEAYAAABPYyMiAAAABmJLR0T///////8JWPfcAAAACXBIWXMAAABIAAAASABGyWs+AAAAF0lEQVRIx2NgGAWjYBSMglEwCkbBSAcACBAAAeaR9cIAAAAASUVORK5CYII=';
$metadata_image = null;
$minified = false;
$debugging = true;
2024-04-28 14:31:08 +02:00
2024-04-25 21:55:08 +02:00
$config_folder = 'template';
$config_root = '/'.(($_SERVER['HTTP_HOST'] == 'localhost' OR strpos($_SERVER['HTTP_HOST'], '192.168') !== false) ? 'srv/http' : 'var/www');
$config_email_noreply = 'no-reply@'.$site_domain;
$config_encoding = 'ISO-8859-1';
$config_timezone = 'Europe/Stockholm';
2024-04-28 14:31:08 +02:00
$config_sitelang = 'sv';
2024-04-25 21:55:08 +02:00
$database_host = null;
2024-06-09 18:08:35 +02:00
$database_port = null;
2024-04-25 21:55:08 +02:00
$database_name = null;
$database_user = null;
$database_pass = null;
2024-04-25 21:57:22 +02:00
$smtp_host = null;
$smtp_port = null;
$smtp_email = null;
$smtp_password = null;
2024-09-23 20:40:19 +02:00
?>