8000 [Framework] Add missing configuration keys by alexandre-daubois · Pull Request #18728 · symfony/symfony-docs · GitHub
[go: up one dir, main page]

Skip to content

[Framework] Add missing configuration keys #18728

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 9, 2023
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
59 changes: 59 additions & 0 deletions reference/configuration/framework.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1541,6 +1541,40 @@ If the charset of your application is UTF-8 (as defined in the
recommended setting it to ``true``. This will make non-UTF8 URLs to generate 404
errors.

secrets
~~~~~~~

enabled
.......

**type**: ``boolean`` **default**: ``true``

Whether to enable or not secrets managements.

decryption_env_var
..................

**type**: ``string`` **default**: ``base64:default::SYMFONY_DECRYPTION_SECRET``

The env var name that contains the vault decryption secret. By default, this
value will be decoded from base64.

local_dotenv_file
.................

**type**: ``string`` **default**: ``%kernel.project_dir%/.env.%kernel.environment%.local``

The path to the local ``.env`` file. This file must contain the vault
decryption key, given by the ``decryption_env_var`` option.

vault_directory
...............

**type**: ``string`` **default**: ``%kernel.project_dir%/config/secrets/%kernel.runtime_environment%``

The directory to store the secret vault. By default, the path uses the current
environment.

.. _config-framework-session:

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

ssi
~~~

enabled
.......

**type**: ``boolean`` **default**: ``false``

Whether to enable or not SSI support in your application.

assets
~~~~~~

Expand Down Expand Up @@ -3392,6 +3436,21 @@ header name and value the header value.

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

messenger
~~~~~~~~~

enabled
.......

**type**: ``boolean`` **default**: ``true``

Whether to enable or not Messenger.

.. seealso::

For more details, see the :doc:`Messenger component </messenger>`
documentation.

web_link
~~~~~~~~

Expand Down
0