-
Notifications
You must be signed in to change notification settings - Fork 2
Redirect http > https #71
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,12 +2,14 @@ | |
| services: | ||
|
|
||
| haproxy: | ||
| image: ghcr.io/openconext/openconext-basecontainers/haproxy26:latest | ||
| image: ghcr.io/openconext/openconext-basecontainers/haproxy28:latest | ||
| ports: | ||
| - 80:80 | ||
| - 443:443 | ||
| volumes: | ||
| - ../core/haproxy/haproxy.pem:/usr/local/etc/haproxy/haproxy.pem | ||
| - ../core/haproxy/haproxy.cfg:/usr/local/etc/haproxy/haproxy.cfg:ro | ||
| - ../core/haproxy/backends.map:/usr/local/etc/haproxy/backends.map:ro | ||
|
Comment on lines
+11
to
+12
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I do not understand why these new volumes are required, dev leftover?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is the haproxy service that is the actual haproxy in stepup. So without this, it will not use the config files. |
||
| networks: | ||
| openconextdev: | ||
| aliases: | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,4 @@ | ||
| The haproxy,.crt file here is a copy of the ../../core/haproxy/haproxy.crt. It is mounted in the containers to be added | ||
| to the CA trust store. It cannot be a symlink, because that would break the file in the container. | ||
| The haproxy.crt file here is a copy of the ../../core/haproxy/haproxy.crt. It is mounted in the containers to be added | ||
| to the CA trust store. It cannot be a symlink, because that would break the file in the container. | ||
|
|
||
| The HAProxy configuration (haproxy.cfg) is shared with core and mounted from ../../core/haproxy/haproxy.cfg. |
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.
🥇