Created
February 13, 2014 15:17
-
-
Save tarto-dev/8976888 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* @file | |
* Configuration file for Drupal's multi-site directory aliasing feature. | |
* | |
* Drupal searches for an appropriate configuration directory based on the | |
* website's hostname and pathname. A detailed description of the rules for | |
* discovering the configuration directory can be found in the comment | |
* documentation in 'sites/default/default.settings.php'. | |
* | |
* This file allows you to define a set of aliases that map hostnames and | |
* pathnames to configuration directories. These aliases are loaded prior to | |
* scanning for directories, and they are exempt from the normal discovery | |
* rules. The aliases are defined in an associative array named $sites, which | |
* should look similar to the following: | |
* | |
* $sites = array( | |
* 'devexample.com' => 'example.com', | |
* 'localhost.example' => 'example.com', | |
* ); | |
* | |
* The above array will cause Drupal to look for a directory named | |
* "example.com" in the sites directory whenever a request comes from | |
* "example.com", "devexample.com", or "localhost/example". That is useful | |
* on development servers, where the domain name may not be the same as the | |
* domain of the live server. Since Drupal stores file paths into the database | |
* (files, system table, etc.) this will ensure the paths are correct while | |
* accessed on development servers. | |
* | |
* To use this file, copy and rename it such that its path plus filename is | |
* 'sites/sites.php'. If you don't need to use multi-site directory aliasing, | |
* then you can safely ignore this file, and Drupal will ignore it too. | |
*/ | |
/** | |
* Using environment variable: | |
* | |
* Set an environment variable called "APPLICATION_ENV" to define the directory | |
* alias. | |
*/ | |
$env = getenv('APPLICATION_ENV'); | |
if (!empty($env)) { | |
$sites[$_SERVER['SERVER_NAME']] = $env; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment