Skip to content
This repository was archived by the owner on Nov 19, 2024. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions src/guides/v2.3/config-guide/prod/config-reference-envphp.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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].

<!-- Link definitions -->
[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
Expand All @@ -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