Skip to content

Commit 4bfe71c

Browse files
[Framework] Add missing configuration keys
1 parent ff219f6 commit 4bfe71c

File tree

1 file changed

+59
-0
lines changed

1 file changed

+59
-0
lines changed

reference/configuration/framework.rst

+59
Original file line numberDiff line numberDiff line change
@@ -1541,6 +1541,40 @@ If the charset of your application is UTF-8 (as defined in the
15411541
recommended setting it to ``true``. This will make non-UTF8 URLs to generate 404
15421542
errors.
15431543

1544+
secrets
1545+
~~~~~~~
1546+
1547+
enabled
1548+
.......
1549+
1550+
**type**: ``boolean`` **default**: ``true``
1551+
1552+
Whether to enable or not secrets managements.
1553+
1554+
decryption_env_var
1555+
..................
1556+
1557+
**type**: ``string`` **default**: ``base64:default::SYMFONY_DECRYPTION_SECRET``
1558+
1559+
The env var name that contains the vault decryption secret. By default, this
1560+
value will be decoded from base64.
1561+
1562+
local_dotenv_file
1563+
.................
1564+
1565+
**type**: ``string`` **default**: ``%kernel.project_dir%/.env.%kernel.environment%.local``
1566+
1567+
The path to the local ``.env`` file. This file must contain the vault
1568+
decryption key, given by the ``decryption_env_var`` option.
1569+
1570+
vault_directory
1571+
...............
1572+
1573+
**type**: ``string`` **default**: ``%kernel.project_dir%/config/secrets/%kernel.runtime_environment%``
1574+
1575+
The directory to store the secret vault. By default, the path uses the current
1576+
environment.
1577+
15441578
.. _config-framework-session:
15451579

15461580
session
@@ -1874,6 +1908,16 @@ This specifies if the session ID is stored on the client side using cookies or
18741908
not. By default, it will use the value defined in the ``php.ini`` with the
18751909
``session.use_cookies`` directive.
18761910

1911+
ssi
1912+
~~~
1913+
1914+
enabled
1915+
.......
1916+
1917+
**type**: ``boolean`` **default**: ``false``
1918+
1919+
Whether to enable or not SSI support in your application.
1920+
18771921
assets
18781922
~~~~~~
18791923

@@ -3392,6 +3436,21 @@ header name and value the header value.
33923436

33933437
For more information, see :ref:`Configuring Emails Globally <mailer-configure-email-globally>`
33943438

3439+
messenger
3440+
~~~~~~~~~
3441+
3442+
enabled
3443+
.......
3444+
3445+
**type**: ``boolean`` **default**: ``true``
3446+
3447+
Whether to enable or not Messenger.
3448+
3449+
.. seealso::
3450+
3451+
For more details, see the :doc:`Messenger component </messenger>`
3452+
documentation.
3453+
33953454
web_link
33963455
~~~~~~~~
33973456

0 commit comments

Comments
 (0)