Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorWilliam Desportes <williamdes@wdes.fr>2022-08-01 11:37:42 +0300
committerWilliam Desportes <williamdes@wdes.fr>2022-08-01 11:38:36 +0300
commitebf4a09378694715e3ed4e7bb52c9abc9d0a2f7a (patch)
tree119c430520b141f1876b63b549e8d17678a69549 /doc
parent74958633c23a5d82ed3101fc762e9b1f1a9e3ad8 (diff)
Document missing Docker ENVs PMA_CONTROL{HOST,PASS,PORT,USER} and PMA_PMADB
Fixes: https://github.com/phpmyadmin/docker/issues/378 Signed-off-by: William Desportes <williamdes@wdes.fr>
Diffstat (limited to 'doc')
-rw-r--r--doc/setup.rst33
1 files changed, 33 insertions, 0 deletions
diff --git a/doc/setup.rst b/doc/setup.rst
index 724a5cf54c..736592ea3e 100644
--- a/doc/setup.rst
+++ b/doc/setup.rst
@@ -243,6 +243,39 @@ You can configure several phpMyAdmin features using environment variables:
.. seealso:: :config:option:`$cfg['QueryHistoryMax']`
+.. envvar:: PMA_CONTROLHOST
+
+ When set, this points to an alternate database host used for storing the ":ref:`linked-tables`" database.
+
+ .. seealso:: :config:option:`$cfg['Servers'][$i]['controlhost']`
+
+.. envvar:: PMA_CONTROLUSER
+
+ Defines the username for phpMyAdmin to use for the ":ref:`linked-tables`" database.
+
+ .. seealso:: :config:option:`$cfg['Servers'][$i]['controluser']`
+
+.. envvar:: PMA_CONTROLPASS
+
+ Defines the password for phpMyAdmin to use for the ":ref:`linked-tables`" database.
+
+ .. seealso:: :config:option:`$cfg['Servers'][$i]['controlpass']`
+
+.. envvar:: PMA_CONTROLPORT
+
+ When set, will override the default port (`3306`) for connecting to the control host.
+
+ .. seealso:: :config:option:`$cfg['Servers'][$i]['controlport']`
+
+.. envvar:: PMA_PMADB
+
+ When set, define the name of the database to be used for the ":ref:`linked-tables`" database.
+ When not set, the advanced features are not enabled by default: they can still potentially be enabled by the user when logging in with the :ref:`zeroconf` feature.
+
+ .. note:: Suggested values: `phpmyadmin` or `pmadb`
+
+ .. seealso:: :config:option:`$cfg['Servers'][$i]['pmadb']`
+
.. envvar:: HIDE_PHP_VERSION
If defined, this option will hide the PHP version (`expose_php = Off`).