Chris@0: ..' => 'directory'. As an Chris@0: * example, to map https://www.drupal.org:8080/mysite/test to the configuration Chris@0: * directory sites/example.com, the array should be defined as: Chris@0: * @code Chris@0: * $sites = array( Chris@0: * '8080.www.drupal.org.mysite.test' => 'example.com', Chris@0: * ); Chris@0: * @endcode Chris@0: * The URL, https://www.drupal.org:8080/mysite/test/, could be a symbolic link Chris@0: * or an Apache Alias directive that points to the Drupal root containing Chris@0: * index.php. An alias could also be created for a subdomain. See the Chris@0: * @link https://www.drupal.org/documentation/install online Drupal installation guide @endlink Chris@0: * for more information on setting up domains, subdomains, and subdirectories. Chris@0: * Chris@0: * The following examples look for a site configuration in sites/example.com: Chris@0: * @code Chris@0: * URL: http://dev.drupal.org Chris@0: * $sites['dev.drupal.org'] = 'example.com'; Chris@0: * Chris@0: * URL: http://localhost/example Chris@0: * $sites['localhost.example'] = 'example.com'; Chris@0: * Chris@0: * URL: http://localhost:8080/example Chris@0: * $sites['8080.localhost.example'] = 'example.com'; Chris@0: * Chris@0: * URL: https://www.drupal.org:8080/mysite/test/ Chris@0: * $sites['8080.www.drupal.org.mysite.test'] = 'example.com'; Chris@0: * @endcode Chris@0: * Chris@0: * @see default.settings.php Chris@0: * @see \Drupal\Core\DrupalKernel::getSitePath() Chris@0: * @see https://www.drupal.org/documentation/install/multi-site Chris@0: */