-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
[bitnami/opencart] Fix opencart admin urls on OPENCART_ENABLE_HTTPS=true #64995
Conversation
Signed-off-by: Kirilov <kirilov@clolytic.bg>
opencart_conf_set HTTPS_SERVER "${http_url}/administration/" "$OPENCART_ADMIN_CONF_FILE" | ||
opencart_conf_set HTTPS_CATALOG "${http_url}/" "$OPENCART_ADMIN_CONF_FILE" |
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.
Is setting the HTTPS_xxx
environment variables needed for the case of HTTP ?
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.
I believe similar issue could happen if those are not set properly when OPENCART_ENABLE_HTTPS is false.
Also in this way it will be consistent with the configuration for the client area:
opencart_conf_set HTTP_SERVER "${http_url}/"
opencart_conf_set HTTPS_SERVER "${http_url}/"
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.
@rafariossaa were you able to check 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.
Sorry for the delay. I am checking 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.
LGTM.
I am merging this change, the new image that includes it should be released in a few hours.
The release the includes this fix is: |
A fix for bitnami/charts#25038