-
Notifications
You must be signed in to change notification settings - Fork 329
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 support and refactor image sources #183
Conversation
This addresses https://bugzilla.redhat.com/show_bug.cgi?id=1478556 btw. |
@remicollet WDYT? |
local dir=${1:-.} | ||
if [ -d ${dir}/httpd-ssl/private ] && [ -d ${dir}/httpd-ssl/certs ]; then | ||
echo "---> Looking for SSL certs for httpd..." | ||
cp -r ${dir}/httpd-ssl ${HTTPD_APP_ROOT} |
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.
HTTPD_APP_ROOT
is missing. (cause of CI failure)
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.
Thx, it's was a copy/paste issue, fixing it just now.
LGTM (quick look), as far as synced with httpd container change which have been merged. |
…ttpd Files are moved to non-opt directories, so they're same in SCL and non-SCL version SSL is installed, so apache can accept secured connections Variables used instead of hard-coded paths Allow to extend container by own configuration, including own SSL certificates
And use usage and maintainer labels consistently
[test-openshift] |
Thanks, merging. |
This PR is a bit bigger than I originally hoped. There are basically these issues addressed here:
The most significant change is adding SSL feature -- by installing the module.
However, when running SSL server, user should be able to provide own SSL certificates, which is technically extending the image, so the general extendibility was also added as part of this PR, similar to what was already done in case of httpd container (https://github.com/sclorg/httpd-container/).
When working with configuration files, it turned to be pain to do it when those paths are hard-coded in scripts, while it also prevents it from sharing the same code across versions and platforms. Thus, I decided to also replace the hard-coded paths by variables defined in the Dockerfile. It allows to share the scripts better, makes it less error-prone for copy-paste errors and also allows to share scripts with Fedora based image.
As a proof for the last point, Fedora image is attached as part of this PR as well.