Grav has the ability to extend the powerful configuration capabilities for different environments to support different configuration for development, staging, and production scenarios.
[version=17]
Up to Grav 1.6 environments were stored in user/
folder. Grav 1.7 moves environments to user/env/
to make environments easier to maintain. It is highly recommended that you move all the environments into this new location on your existing sites.
[/version]
What this means is that you can provide as little or as much configuration changes per environment as needed. A good example of this is the Debug Bar. By default, the new Debug Bar is disabled in the core system/config/system.yaml
file, and also in the user override file:
[prism classes="language-bash command-line"] user/config/system.yaml [/prism]
If you wanted to turn it on, you can easily enable it in your user/config/system.yaml
file, however a better solution might be to have it enabled for your development environment when accessing via localhost, but disabled on your production server.
This can be easily accomplished by providing an override of that setting in the file:
[version=15,16] [prism classes="language-bash command-line"] user/localhost/config/system.yaml [/prism] [/version] [version=17] [prism classes="language-bash command-line"] user/env/localhost/config/system.yaml [/prism] [/version]
where localhost
is the hostname of the environment (this is what the host you enter in your browser, e.g. http://localhost/your-site) and your configuration file contains:
[prism classes="language-yaml line-numbers"] debugger: enabled: true [/prism]
Similarly, you may want to enable CSS, Link, JS and JS Module Asset Pipelining (combining + minification) for your production site only
([version=15,16]user/www.mysite.com/config/system.yaml
[/version][version=17]user/env/www.mysite.com/config/system.yaml
[/version]):
[prism classes="language-yaml line-numbers"] assets: css_pipeline: true js_pipeline: true js_module_pipeline: true [/prism]
If your production server was reachable via http://www.mysite.com
then you could also provide configuration specific for that production site with a file located at
[version=15,16]user/www.mysite.com/config/system.yaml
[/version][version=17]user/env/www.mysite.com/config/system.yaml
[/version].
Of course, you are not limited to changes to system.yaml
, you can actually provide overrides for any Grav setting in the site.yaml
or even in any plugin configuration!
If you are using the Grav Scheduler, be aware of it using the localhost
environment and therefore its configuration.
To override a plugin configuration YAML file is simply the same process as overriding a regular file. If the standard configuration file is located in:
[prism classes="language-bash command-line"] user/config/plugins/email.yaml [/prism]
Then you can override this with a setting that only overrides specific options that you want to use for local testing:
[version=15,16] [prism classes="language-bash command-line"] user/localhost/config/plugins/email.yaml [/prism] [/version] [version=17] [prism classes="language-bash command-line"] user/env/localhost/config/plugins/email.yaml [/prism] [/version]
With the configuration:
[prism classes="language-yaml line-numbers"] mailer: engine: smtp smtp: server: smtp.mailtrap.io port: 2525 encryption: none user: '9a320798e65135' password: 'a13e6e27bc7205' [/prism]
You can override themes in much the same way:
[prism classes="language-bash command-line"] user/config/themes/antimatter.yaml [/prism]
Can be overridden for any environment, say some production site (http://www.mysite.com
):
[version=15,16] [prism classes="language-bash command-line"] user/www.mysite.com/config/themes/antimatter.yaml [/prism] [/version] [version=17] [prism classes="language-bash command-line"] user/env/www.mysite.com/config/themes/antimatter.yaml [/prism]
Starting from Grav 1.7, it is possible to set the environment by using server configuration. In this use scenario, you set environment variables from the server or from a script that runs before Grav to select the environment to be used.
The simplest way to set environment is by using GRAV_ENVIRONMENT
. Value of GRAV_ENVIRONMENT
has to be a valid server name with or without domain.
The following example selects development environment for the localhost:
[ui-tabs] [ui-tab title="Apache 2"] [prism classes="language-apacheconf line-numbers"] <VirtualHost 127.0.0.1:80> ...
SetEnv GRAV_ENVIRONMENT development
[/prism] [/ui-tab] [ui-tab title="NGINX php-fpm"] [prism classes="language-nginx line-numbers"] location / { ...
fastcgi_param GRAV_ENVIRONMENT development; } [/prism] [/ui-tab] [ui-tab title="NGINX php-cgi"] [prism classes="language-nginx line-numbers"] location / { ...
env[GRAV_ENVIRONMENT] = development
} [/prism] [/ui-tab] [ui-tab title="Docker"] [prism classes="language-yaml line-numbers"] web: environment:
Starting from Grav 1.7, you can also change the location of the environments. There are two possibilities: either you configure a common location for all the environments or you define them one by one.
If for some reason you are not happy with the default user/env
location for your environments, it can be changed by using GRAV_ENVIRONMENTS_PATH
environment variable.
Value of GRAV_ENVIRONMENTS_PATH
has to be existing path under GRAV_ROOT
. Do not use trailing slash.
In the next example, all the environments will be located in user/sites/GRAV_ENVIRONMENT
, where GRAV_ENVIRONMENT
is either automatically detected or manually set in the server configuration:
[ui-tabs] [ui-tab title="Apache 2"] [prism classes="language-apacheconf line-numbers"] <VirtualHost 127.0.0.1:80> ...
SetEnv GRAV_ENVIRONMENTS_PATH user://sites
[/prism] [/ui-tab] [ui-tab title="NGINX php-fpm"] [prism classes="language-nginx line-numbers"] location / { ...
fastcgi_param GRAV_ENVIRONMENTS_PATH user://sites; } [/prism] [/ui-tab] [ui-tab title="NGINX php-cgi"] [prism classes="language-nginx line-numbers"] location / { ...
env[GRAV_ENVIRONMENTS_PATH] = user://sites
} [/prism] [/ui-tab] [ui-tab title="Docker"] [prism classes="language-yaml line-numbers"] web: environment:
Sometimes it may be useful to have a custom location for your environment
Value of GRAV_ENVIRONMENT_PATH
has to be existing path under GRAV_ROOT
. Do not use trailing slash.
In the next example, only the current environment will be located in user/development
:
[ui-tabs] [ui-tab title="Apache 2"] [prism classes="language-apacheconf line-numbers"] <VirtualHost 127.0.0.1:80> ...
SetEnv GRAV_ENVIRONMENT_PATH user://development
[/prism] [/ui-tab] [ui-tab title="NGINX php-fpm"] [prism classes="language-nginx line-numbers"] location / { ...
fastcgi_param GRAV_ENVIRONMENT_PATH user://development; } [/prism] [/ui-tab] [ui-tab title="NGINX php-cgi"] [prism classes="language-nginx line-numbers"] location / { ...
env[GRAV_ENVIRONMENT_PATH] = user://development
} [/prism] [/ui-tab] [ui-tab title="Docker"] [prism classes="language-yaml line-numbers"] web: environment:
Note that GRAV_ENVIRONMENT_PATH
is separate from GRAV_ENVIRONMENT
, so you may also want to set the environment name if you don't want it to be automatically set to match the current domain name.
Environments can be customized far further than described in this page.
For more information, please continue to the next page: Multisite Setup.