This commit is contained in:
Ty Clifford
2026-05-20 21:08:23 -04:00
commit 6ab3058a92
187 changed files with 18355 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
<?php
/**
Bland configuration/functions n such
- Configuration for URLs to be directed locally or CDN. 4.26 pm, 8-19-24
*/
// CDN on or off
$setURL = "2";
if ($setURL == 1) {
// CDN URL
$mainURL = "";
//echo $mainURL;
} else {
// local/server URL
$mainURL = "https://tyclifford.com";
//echo $mainURL;
}
?>