-
Notifications
You must be signed in to change notification settings - Fork 455
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
Enable SSL for all server #441
Conversation
Signed-off-by: TasdidurRahman <[email protected]>
wrong upstream |
If you want you can contribute adding support for SSL via ENVs |
Signed-off-by: TasdidurRahman <[email protected]>
hi @williamdes, can you review this? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please update https://github.com/phpmyadmin/docker/blob/master/config.inc.php
And run ./update.sh
Can you also add documentation on the README ?
It is unclear how to use this
PMA_SSLS="0,1"
is maybe not very user friendly
Signed-off-by: TasdidurRahman <[email protected]>
imo this is better to keep it simple as we are not using CA rn. still we are open for suggestion! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Okay, I did not see that other ENVs have the same logic
Please add documentation to the README and say the variable works in the same way that PMA_PORTS works
Signed-off-by: TasdidurRahman <[email protected]>
Signed-off-by: TasdidurRahman <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you !
I sent your changes to the official registry: docker-library/official-images#17398 TODO myself:
|
enable ssl connection with upstream. no ca used.
variable introduced:
PMA_SSL
for single upstreamPMA_SSLS
for multiple upstreamdocker run ... -e PMA_HOSTS="mysql-notls,mysql-tls" -e PMA_SSLS="0,1" ...