This commit is contained in:
Ty Clifford
2026-06-24 09:19:08 -04:00
commit 5f7c62f8a7
151 changed files with 18705 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 = "https://clifford.nyc3.cdn.digitaloceanspaces.com/public/tyclifford.com";
//echo $mainURL;
} else {
// local/server URL
$mainURL = "https://tyclifford.com";
//echo $mainURL;
}
?>