diff --git a/src/guides/v2.3/config-guide/prod/config-reference-envphp.md b/src/guides/v2.3/config-guide/prod/config-reference-envphp.md index 03acb895fde..2bb29e4f3f8 100644 --- a/src/guides/v2.3/config-guide/prod/config-reference-envphp.md +++ b/src/guides/v2.3/config-guide/prod/config-reference-envphp.md @@ -26,6 +26,7 @@ The `env.php` file contains the following sections: | `resource` | Mapping of resource name to a connection | | `session` | Session storage data | | `x-frame-options` | Setting for [x-frame-options][x-frame-options] | +| `system` | Configuration values that cannot be edited in the Magento Admin | ## backend @@ -227,6 +228,23 @@ x-frame-options header can be configured using this node. Learn more about session in [x-frame-options][x-frame-options]. +## system + +Magento configuration values that cannot be edited in the Magento Admin. + +```conf +'system' => [ + 'default' => [ + 'web' => [ + 'secure' => [ + 'base_url' => 'https://magento.test/' + ] + ] + ] +``` + +Learn more in [env-php-config-set][env-php-config-set]. + [lock-provider-config]: {{ page.baseurl }}/install-gde/install/cli/install-cli-subcommands-lock.html [encryption-key]: https://docs.magento.com/m2/ce/user_guide/system/encryption-key.html @@ -240,3 +258,4 @@ Learn more about session in [x-frame-options][x-frame-options]. [downloadable-domains]: {{ page.baseurl }}/reference/cli/magento.html#downloadabledomainsadd [change-docroot-to-pub]: {{ page.baseurl }}/install-gde/tutorials/change-docroot-to-pub.html [crons]: {{ page.baseurl }}/config-guide/cli/config-cli-subcommands-cron.html +[env-php-config-set]: {{ page.baseusr }}/config-guide/cli/config-cli-subcommands-config-mgmt-set.html