-
Notifications
You must be signed in to change notification settings - Fork 0
AB#72068 Shorten and align DNS names. #200
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
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 | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -108,15 +108,15 @@ Mappings: | |||||||||
| "jwtIssuer": "https://lti.canvas.ox.ac.uk" | ||||||||||
| "jwtJWKSURI": "https://lti.canvas.ox.ac.uk/.well-known/jwks.json" | ||||||||||
| "ltiIssuer": "https://lti.canvas.ox.ac.uk" | ||||||||||
| "uiFrontendUrl": "https://tools-support-prod.canvas-tools.app" | ||||||||||
| "uiFrontendUrl": "https://tools-ui.canvas-tools.app/" | ||||||||||
| beta: | ||||||||||
| "mngdUpdates": "MON:06:00" | ||||||||||
| # We have an additional profile that unsets things on the non-prod account | ||||||||||
| "springProfile": "aws,nonprod" #SPRING_PROFILES_ACTIVE | ||||||||||
| "jwtIssuer": "https://lti-dev.canvas.ox.ac.uk" | ||||||||||
| "jwtJWKSURI": "https://lti-dev.canvas.ox.ac.uk/.well-known/jwks.json" | ||||||||||
| "ltiIssuer": "https://lti-dev.canvas.ox.ac.uk" | ||||||||||
| "uiFrontendUrl": "https://tools-support-beta.canvas-tools.app" | ||||||||||
| "uiFrontendUrl": "https://tools-dev-ui.canvas-tools.app/" | ||||||||||
|
||||||||||
| "uiFrontendUrl": "https://tools-dev-ui.canvas-tools.app/" | |
| "uiFrontendUrl": "https://tools-ui-dev.canvas-tools.app/" |
Copilot
AI
Jan 26, 2026
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.
The beta URL ends with a trailing slash, but other URLs in the same configuration (lines 116-118) do not have trailing slashes. This inconsistency could lead to issues with URL matching or CORS configuration. Consider removing the trailing slash to align with the existing URL patterns in the file.
| "uiFrontendUrl": "https://tools-dev-ui.canvas-tools.app/" | |
| "uiFrontendUrl": "https://tools-dev-ui.canvas-tools.app" |
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.
The production URL ends with a trailing slash, but other URLs in the same configuration (lines 108-110) do not have trailing slashes. This inconsistency could lead to issues with URL matching or CORS configuration. Consider removing the trailing slash to align with the existing URL patterns in the file.