This package extends Symfony's symfony/dotenv
component to allow streamlined Drupal config via Environment Variables.
Please refer to the Symfony component's documentation about how .env files
should be used. It is important to note that .env files are ignored if the
APP_ENV var has already been set by the server. For performance purposes,
production environments should ideally rely on pre-configured environment variables,
rather than environment variable values loaded from .env files.
composer require unleashedtech/dotenv-drupal
First, you'll need to configure Drupal to use this package.
Drupal is typically configured via settings.php files in various directories.
To use this package with Drupal, some code will need to be added to the top of
the relevant settings.php file(s):
<?php
use UnleashedTech\Drupal\Dotenv\Dotenv;
$dotenv = $dotenv ?? new Dotenv();
$config = $dotenv->getConfig();
$databases = $dotenv->getDatabases();
$settings = $dotenv->getSettings();If conditional logic is required for a given site, such logic is still supported.
This package will auto-load various settings.{{environment}}.php,
config.{{environment}}.php or databases.{{environment}}.php files, if they exist.
For instance, if you need to set a database prefix for staging, you can create
databases.staging.php:
<?php
$databases['default']['default']['prefix'] = 'foo_';Each included file only has the related variable in scope
(e.g. config.dev.php only has $config in scope).
You can use the default settings file to provide base configuration for
a multi-site install:
<?php
use UnleashedTech\Drupal\Dotenv\Dotenv;
$dotenv = new Dotenv();
$dotenv->setSiteName(basename(__DIR__));
require __DIR__ . '/../default/settings.php';If you'd like, you can manually set the database name for each site via the
setDatabaseName method:
<?php
use UnleashedTech\Drupal\Dotenv\Dotenv;
$dotenv = new Dotenv();
$dotenv->setSiteName(basename(__DIR__));
$dotenv->setDatabaseName('foo');
require __DIR__ . '/../default/settings.php';If you need to use the default site as part of your multi-site install,
you can allow it by calling the DotEnv::setMultiSiteDefaultSiteAllowed method
in default/settings.php:
<?php
use UnleashedTech\Drupal\Dotenv\Dotenv;
$dotenv = $dotenv ?? new Dotenv();
$dotenv->setMultiSiteDefaultSiteAllowed();
$config = $dotenv->getConfig();
$databases = $dotenv->getDatabases();
$settings = $dotenv->getSettings();This package also provides functionality to configure Drupal's $sites variable
via sites.php. The $sites variable is built from data in the DOMAINS
& SITES environment variables. You will need to add the following code
to sites.php:
<?php
use UnleashedTech\Drupal\Dotenv\Dotenv;
$dotenv = new Dotenv();
$sites = $dotenv->getSites();That's it! Drupal will now attempt to load essential connection information from Environment Variables.
This package will provide many default setting & configuration values based on the detected environment. Some of these values can be populated by environment variables.
Environment variables can be set in .env files, or via modifying server configuration.
For production environments, environment variables should ideally be defined via server
configuration.
Multi-site installations often need config that differs from the default site.
This package first checks for variables following the {{ app }}__{{ site }}__{{ var }}
naming convention, before falling back to the {{ var }} naming convention.
You can provide site-specific information via namespaced environment variables.
- DATABASE_URL
- FILE_PUBLIC_PATH
- FILE_PRIVATE_PATH
- FILE_TEMP_PATH
- CONFIG_SYNC_PATH
- DOMAINS
- MAILGUN_URL
- PUBLIC
- SALT
- SITES
- SOLR_URL
- TRUSTED_HOST_PATTERNS
- More configuration options coming soon!
The default database connection can be configured via a DSN:
DATABASE_URL=driver://user:password@host:port/databaseFor example:
DATABASE_URL=mysql://foo:bar@localhost:3306/bazFor multi-site installations, do not specify a database name nor credentials in
the DATABASE_URL variable:
DATABASE_URL=mysql://localhost:3306For an "earth" Drupal App with a "default" site & an "antarctica" site:
DATABASE_URL=mysql://localhost:3306
EARTH__DEFAULT__DATABASE_USER=foo
EARTH__DEFAULT__DATABASE_PASSWORD=bar
EARTH__ANTARCTICA__DATABASE_USER=baz
EARTH__ANTARCTICA__DATABASE_PASSWORD=quxThe default Drupal App Name is "default". For most use cases, you'll want to set the
Drupal App Name in the default settings.php file, as shown below:
<?php
use UnleashedTech\Drupal\Dotenv\Dotenv;
$dotenv = $dotenv ?? new Dotenv();
$dotenv->setAppName('earth');
// ...The database name for a site can be overridden via definition of a {{ app }}__{{ site }}__DATABASE_NAME
environment variable:
EARTH__ANTARCTICA__DATABASE_NAME=antAllows you to override the default $settings['file_public_path'] value:
FILE_PUBLIC_PATH=sites/all/filesDrupal expects this path to be relative to DRUPAL_ROOT.
Allows you to override the default $settings['file_private_path'] value:
FILE_PRIVATE_PATH=/privateAllows you to override the default $settings['file_temp_path'] value:
FILE_TEMP_PATH=/tmpAllows you to override the default $settings['config_sync_path'] value:
CONFIG_SYNC_PATH=/syncA CSV list of domains used by the given environment:
DOMAINS=foo.example,bar.example,baz.exampleThe information Drupal should use to authenticate with the Mailgun API.
The "user" in the DSN is the API key.
MAILGUN_URL=https://[email protected]MAILGUN_URL=https://[email protected]A string allowing the enabling/disabling of Shield module auth functionality.
If true, Shield will not be enabled.
If false, the username will be the App Name & the password will
be the Site Name.
Note: Make sure the "Enable Shield" checkbox is checked in Drupal & that config is committed.
A CSV list of Drupal "sites" (e.g. "subdomains") used by the given environment:
SITES=foo,bar,baz,quxA string used for "one-time login links, cancel links, form tokens, etc."
Use drush eval "var_dump(Drupal\Component\Utility\Crypt::randomBytesBase64(55))" to generate one.
SALT=generatedSaltValueThe default Solr connection can be configured via a DSN:
SOLR_URL=http://localhostThis package makes several assumptions, which can be overridden via the SOLR_URL DSN. The DSN in the
example above is automatically expanded to:
SOLR_URL=http://default@localhost:8983#defaultIn the expanded example above, the user is the name of the Solr core & the fragment is the Drupal machine
name for the connection. Consider revising Solr core & Drupal Solr server machine names to default,
so the shorter DSN can be used.
Streamlined environment-dependent configuration of one Solr core is supported at this time.
Optional. A CSV list of patterns specifying trusted hosts.
Start (^) & end ($) characters are added to every pattern, by default.
If the TRUSTED_HOST_PATTERNS variable is not set, this package will populate
Drupal's trusted_host_patterns array based on the values of DOMAINS
& SITES variables.
If you have DOMAINS set to foo.example,bar.example, the Drupal trusted_host_patterns
settings array would have the following values:
^foo\.example$^www\.foo\.example$^bar\.example$^www\.bar\.example$
If you have DOMAINS set to foo.example & SITES set to bar,baz,qux, the
Drupal trusted_host_patterns setting array would have the following values:
^bar\.foo\.example$^baz\.foo\.example$^qux\.foo\.example$
The machine name of the Drupal App (e.g. "default" or "earth").
The site name for a Drupal App Site (e.g. "default" or "antarctica").
With these few Environment Variables, you will be able to configure Drupal in a streamlined fashion similar to the way Symfony is configured. Support for many more common Drupal features can be expected soon. Please consider creating a Pull Request with features you would like to this package to support.