-
Notifications
You must be signed in to change notification settings - Fork 0
feat!: support organization-specific domains for Portal backend and frontend [PORTAL-1067] #165
base: develop
Are you sure you want to change the base?
Conversation
…rontend - introduced new configuration parameter `portal_domain` - allow specifying extra labels for customization, backend and frontend container BREAKING CHANGE: Removed support for alias hostnames on the backend BREAKING CHANGE: Removed support for alias hostnames on the frontend BREAKING CHANGE: Removed support for alias hostnames on the customization service BREAKING CHANGE: Dropped support for Portal Backend <10.0.0 BREAKING CHANGE: Dropped support for Portal Frontend <3.0.0 BREAKING CHANGE: Dropped support for Portal Customization <3.0.0
DJANGO_SECRET_KEY: "{{ admin_configuration.secret_key | mandatory }}" | ||
FROM_EMAIL: "{{ admin_configuration.from_email | default('admin@' + portal_configuration.hostname, true) }}" | ||
FROM_EMAIL: "{{ admin_configuration.from_email | default('admin@' + admin_configuration.domain, true) }}" |
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.
so the sender is always [email protected]
or something like that?
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.
Probably the only way without new DKIM verification.
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.
either that, or always [email protected]
which is also weird ...
But yeah, definitely affects our terraform module ...
And we don't manage the innoactive.io dns records via terraform, so it's a bit of an issue.
Co-authored-by: Klyse <[email protected]>
…Innoactive/ansible-innoactive-portal-role into PORTAL-849-domain-name-per-organization
Probably main open topic right now is whether session management supports the new cors origins setting with wildcards. But other than that, the changes here should be more or less complete. |
portal_domain
BREAKING CHANGE: Removed support for alias hostnames on the backend
BREAKING CHANGE: Removed support for alias hostnames on the frontend
BREAKING CHANGE: Removed support for alias hostnames on the customization service
BREAKING CHANGE: Dropped support for Portal Backend <10.0.0
BREAKING CHANGE: Dropped support for Portal Frontend <3.0.0
BREAKING CHANGE: Dropped support for Portal Customization <3.0.0