diff --git a/config/LocalSettings.php b/config/LocalSettings.php index 0dbcb04..240b3ea 100644 --- a/config/LocalSettings.php +++ b/config/LocalSettings.php @@ -23,6 +23,9 @@ exit; } +// Use dev.starcitizen.tools for now as this image is used in development +const SCT_DOMAIN = 'dev.starcitizen.tools'; + /** * Invalidate cache * @@ -71,7 +74,7 @@ * Server/site settings */ $wgSitename = 'Star Citizen Wiki'; -$wgServer = 'https://starcitizen.tools'; +$wgServer = 'https://' . SCT_DOMAIN; // Short URL paths $wgArticlePath = '/$1'; $wgScriptPath = ''; @@ -887,7 +890,7 @@ * @see https://github.com/SemanticMediaWiki/SemanticMediaWiki */ // Required to enable SMW -enableSemantics( 'starcitizen.tools' ); +enableSemantics( SCT_DOMAIN ); // Set default property type to Text // Because we use SMW property for displaying data through templates mainly $smwgPDefaultType = '_txt';