.. include:: /Includes.rst.txt .. _module-configuration: ============================== Configuration ============================== The Configuration module allows integrators to view and validate the global configuration of TYPO3. The module displays all relevant global variables such as TYPO3_CONF_VARS, TCA and many more, in a tree format which is easy to browse through. Over time this module got extended to also display the configuration of newly introduced features like the middleware stack or the event listeners. .. include:: /Images/AutomaticScreenshots/Modules/Configuration.rst.txt .. rst-class:: bignums-attention 1. Access this module in the TYPO3 backend under :guilabel:`System > Configuration`. 2. Select the desired configuration entry in the upper menu bar. 3. To find a configuration setting quickly enter a phrase in the search box. Is is also possible to use a regular expression for the search phrase. Click on the dropdown box and enable the :guilabel:`Use regular expression` checkbox. 4. The configuration tree of the selected entry is displayed. Expand and collapse the settings with clicking on the triangle. The Configuration module displays various configuration settings: - :ref:`Global configuration ` (:php:`$GLOBALS['TYPO3_CONF_VARS']`) - :doc:`Table configuration array ` (:php:`$GLOBALS['TCA']`) - :ref:`Registered services ` (:php:`$GLOBALS['T3_SERVICES']`) - :ref:`User settings configuration ` (:php:`$GLOBALS['TYPO3_USER_SETTINGS']`) - :ref:`Table permissions by page type ` - :ref:`User settings ` (:php:`$GLOBALS['BE_USER']->uc`) - :ref:`User TSconfig ` (:php:`$GLOBALS['BE_USER']->getTSConfig()`) - :ref:`Backend Routes ` - :ref:`Backend Modules ` - :ref:`HTTP Middlewares (PSR-15) ` - :ref:`Sites: TCA configuration ` - :ref:`Sites: YAML configuration ` - :ref:`Event listeners (PSR-14) ` - :ref:`MFA providers ` - :ref:`Soft Reference Parsers ` - :ref:`Form: YAML Configuration ` (with installed :doc:`Form system extension `) - `Backend Toolbar Items` - :ref:`Symfony Expression Language Providers ` - :ref:`Reactions ` (with installed :doc:`Reactions system extension `) - :ref:`Content Security Policy Mutations ` - :ref:`Doctrine DBAL Driver Middlewares ` Extending the Configuration module ================================== The Configuration module can be extended by third-party extensions. Have a look into the :ref:`t3coreapi:config-module` chapter in TYPO3 Explained.