We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Is it possible to use environment variables to hide db?
The text was updated successfully, but these errors were encountered:
For now there is no ENV variable that does that, it would need to be added to https://github.com/phpmyadmin/docker/blob/master/config.inc.php
Sorry, something went wrong.
you can add config.user.inc.php example:
<?php $i = 1; $cfg['Servers'][$i]['ssl'] = true; $cfg['Servers'][$i]['hide_db'] = 'information_schema|performance_schema'; $cfg['MaxNavigationItems'] = 999; $cfg['NavigationWidth'] = 360; $cfg['ExecTimeLimit'] = 3600; ?>
No branches or pull requests
Is it possible to use environment variables to hide db?
The text was updated successfully, but these errors were encountered: