You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+18Lines changed: 18 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -158,6 +158,18 @@ In order to keep your sessions active between container updates you will need to
158
158
-v /some/local/directory/sessions:/sessions:rw
159
159
```
160
160
161
+
## Connect over SSL with backend
162
+
163
+
Set the variable ``PMA_SSL`` to '1' and enable ssl usage from phpmyadmin to mysql server. The default value is 0. Variable ``PMA_SSLS`` can be used as a comma seperated sequence of 0 and 1 where multiple hosts are mentioned. Values order must follow the ``PMA_HOSTS`` and will be computed accordingly.
* ``PMA_ARBITRARY`` - when set to 1 connection to the arbitrary server will be allowed
@@ -191,6 +203,10 @@ In order to keep your sessions active between container updates you will need to
191
203
192
204
For usage with Docker secrets, appending ``_FILE`` to the ``PMA_PASSWORD`` environment variable is allowed (it overrides ``PMA_PASSWORD`` if it is set):
193
205
206
+
* ``PMA_SSL`` - define ssl usage for MySQL server
207
+
208
+
* ``PMA_SSLS`` - comma separated list of 0 and 1 defining ssl usage for corresponding MySQL servers
209
+
194
210
```sh
195
211
docker run --name phpmyadmin -d -e PMA_PASSWORD_FILE=/run/secrets/db_password.txt -p 8080:80 phpmyadmin:latest
0 commit comments