跳转到主要内容

category

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.

Note: Official stable Aegir releases will not install on recent stable Debian or Ubuntu OSes until there's a new release available as support for these are only in development branches.  See #3246691: Create an Aegir 3.20 release for recent stable Debian & Ubuntu LTS for details.

Overview of the process

  1. Install a Drupal instance that will act as the root site for our multisite instance. In our example, the root site will be called dmultisite, will be reachable at dmultisite.com, and will be installed at /var/www/dmultisite
  2. Set up a site within the multisite called site1 which is reachable at site1.dmultisite.com
  3. Configure site1 to have its own modules outside of the root site.

Step 1: Instantiate the master site

To begin the process, install a supported version of Drupal 9 or later 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: dmultisite.

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/dmultisite
  ServerName dmultisite.com
  ServerAlias www.dmultisite.com
  
  <Directory />
    Options FollowSymLinks
    AllowOverride None
  </Directory>
  
  <Directory /var/www/dmultisite>
    Options Indexes FollowSymLinks MultiViews
    AllowOverride All
    Order allow,deny
    Allow from all
  </Directory>

  ErrorLog ${APACHE_LOG_DIR}/dmultisite_error.log
  LogLevel warn
  CustomLog ${APACHE_LOG_DIR}/dmultisite_access.log combined

</VirtualHost>

1.4: Install Drupal by visiting dmultisite.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: /dmultisite/sites/site1.dmultisite.com

2.2: Create a database for site1, ex: dmultisite_site1

2.3: Make a copy of /dmultisite/sites/example.sites.php called /dmultisite/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.dmultisite.com'] = 'site1.dmultisite.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/dmultisite
  ServerName site1.dmultisite.com
  
  <Directory />
    Options FollowSymLinks
    AllowOverride None
  </Directory>
  
  <Directory /var/www/dmultisite>
    Options Indexes FollowSymLinks MultiViews
    AllowOverride All
    Order allow,deny
    Allow from all
  </Directory>

  ErrorLog ${APACHE_LOG_DIR}/site1-dmultisite_error.log
  LogLevel warn
  CustomLog ${APACHE_LOG_DIR}/site1-dmultisite_error.log combined

</VirtualHost>

2.6: Copy /dmultisite/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.dmultisite.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

Installation of per-site modules in the manner described below will not allow them to be managed via composer and any updates in the future will need to be done manually. It is advised to only implement this approach for custom modules. If you would like to have per-site contributed modules which are managed via composer, you can use the configuration management system and config split.

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.

In this example, we will enable site1 to have its own modules:

  1. Create a ‘modules’ folder in site1’s subdirectory: /dmultisite/sites/site1.dmultisite.com/modules
  2. Give apache write access to this folder with chown www-data /dmultisite/sites/site1.dmultisite.com/modules
  3. Test it out:
    1. Move out of site1’s subdirectory (the root site directory) and install the Pathauto module
    2. Move into site1’s subdirectory and install the Display Suite module
    3. Visit both sites and confirm that the Pathauto module is available in both the sites and the Display Suite module is only available in site1

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, run 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 ".dev" in the alias.

Related Content