14 lines
308 B
PHP
14 lines
308 B
PHP
<?php
|
|
//Name of your site
|
|
$site_name="🌻 thunix 🌻";
|
|
|
|
//Root for the site, in a browser
|
|
$site_root="https://".$_SERVER['HTTP_HOST'];
|
|
//Local base root for app files
|
|
$doc_root="/var/www/thunix.cf";
|
|
|
|
//Site style
|
|
// site is the default. Specify something else here to switch
|
|
$site_style="newthunix";
|
|
?>
|