The following guide will highlight the manual steps required to set up a Drupal multisite. This guide is a work in progress with only some example configurations presented. Other options are available, such as HTTPS, other Web servers and databases, and more refined virtual host configurations, etc.
Alternatively use the Aegir hosting system. It does most of the heavy lifting and uses secure best practices, including automatically configuring virtual hosts for both Apache and Nginx, adding HTTPS support, running Composer commands, etc. See the documentation for setting up a “platform”, Aegir-speak for a multisite codebase.
Overview of the process
- Install a Drupal instance that will act as the root site for our multisite instance. In our example, the root site will be called d8multisite, will be reachable at d8multisite.com, and will be installed at /var/www/d8multisite
- Set up a site within the multisite called site1 which is reachable at site1.d8multisite.com
- Configure site1 to have its own modules outside of the root site.
Step 1: Instantiate the master site
To begin the process, install a copy of Drupal 8 on your server. Read the docs on installing Drupal if you are not familiar.
In this example, we install Drupal with the following steps:
1.1: Create a database for the multisite root site, ex: d8multisite.
1.2: Download and extract a copy of Drupal into your web directory.
1.3: Create a virtual host definition for the root site. Read about virtual host configurations. An example of an Apache virtual host configuration is as follows. For Nginx, see the official recipe.
<VirtualHost *:80>
# virtual host configuration for Drupal 8 multisite root site
ServerAdmin me@domain.com
DocumentRoot /var/www/d8multisite
ServerName d8multisite.com
ServerAlias www.d8multisite.com
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/d8multisite>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
Allow from all
</Directory>
ErrorLog ${APACHE_LOG_DIR}/d8multisite_error.log
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/d8multisite_access.log combined
</VirtualHost>
1.4: Install Drupal by visiting d8multisite.com and follow the install UI.
Step 2: Configure the first site for the multisite
Now that we have the root site set up, we can begin configuring our first site called site1. Here are the steps in this process:
2.1: Create a folder for site1 in your multisite: /d8multisite/sites/site1.d8multisite.com
2.2: Create a database for site1, ex: d8multisite_site1
2.3: Make a copy of /d8multisite/sites/example.sites.php called /d8multisite/sites/sites.php
2.4: Edit sites.php so the end of the file looks like this:
# make the root drupal site aware of site1:
$sites['site1.d8multisite.com'] = 'site1.d8multisite.com';
2.5: Create a virtual host for site1. Note that this virtual host should point to the root site, not the site’s subdirectory. Note that you can also forego creating a new virtual host configuration for this site and just the new site as a ServerAlias to the root site. In this Apache example, we will, however, create a separate virtual host for site1:
<VirtualHost *:80>
ServerAdmin me@domain.com
DocumentRoot /var/www/d8multisite
ServerName site1.d8multisite.com
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/d8multisite>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
Allow from all
</Directory>
ErrorLog ${APACHE_LOG_DIR}/site1-d8multisite_error.log
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/site1-d8multisite_error.log combined
</VirtualHost>
2.6: Copy /d8multisite/sites/default/default.settings.php to the new site’s directory as settings.php:
#from the drupal root folder
cp sites/default/default.settings.php sites/site1.d8multisite.com/settings.php
2.7: Finish the Drupal installation process for site1 by visiting the site’s domain. If this shows up the first site you’re not expecting, visit specifically ‘/core/install.php’.
You can repeat these steps each time you want to build a site in your multisite. You can also use domains like example.com and site1.anotherdomain.com. More details on domains, URLs, and sites subdirectory names.
Step 3: Enable per-site modules
In some cases, you may want one of your sites within your multisite to have its own modules. To enable this, you simply need to create the appropriate folders within the target site’s folder. See Multisite folder structure in Drupal 8.
In this example, we will enable site1 to have its own modules:
- Create a ‘modules’ folder in site1’s subdirectory: /d8multisite/sites/site1.d8multisite.com/modules
- Give apache write access to this folder with
chown www-data /d8multisite/sites/site1.d8multisite.com/modules
- Test it out:
- Move out of site1’s subdirectory (i.e. into the root site) and install the Pathauto module with drush
drush dl pathauto
- Move into site1’s subdirectory and install the ds module with drush
drush dl ds
- Visit both sites and confirm:
- Pathauto is available in both sites
- Display Suite is only available in site1
- Move out of site1’s subdirectory (i.e. into the root site) and install the Pathauto module with drush
Note: The assumption here is that you can do this with themes, libraries, and files. More testing and documentation is needed here.
Using drush in a multisite
You can use the -l option:
drush -l example.com command
or the site alias:
drush @alias command
To check what aliases are used, execute:
drush site:alias
An example of its output could be:
‘@sub1.dev’:
root: /var/www/mydomain.com/web
uri: ‘https://sub1.mydomain.com‘
‘@default.dev’:
root: /var/www/mydomain.com/web
uri: ‘https://sub2.mydomain.com‘
‘@third.dev’:
root: /var/www/mydomain.com/web
uri: ‘https://thirddomain.com‘
And the right drush command could be:
drush @sub1 updb
Note: we are not using the “.dev” in the alias