403 While Accessing Jira Via Teleport #43672
-
Hey! Teleport app section's configuration looks like this:
Unfortunately, I get 403 or CORS status for some Jira resources. For example, uploaded images or avatars are not shown. What are necessary headers I need to set in Teleport app_services section for it? I have already tried using CORS headers. I would be grateful if someone could help. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Unfortunately this is likely to be related to settings on the Jira side, rather than Teleport. My understanding is that Jira uses its own Java-based webserver in front of the application itself, which is likely to be rewriting or changing the The easiest resolution here would be to change Jira's concept of its own "public address" to There may also be ways to disable the CORS mitigation (or lower its aggressiveness) on the Jira side with some launch parameters. |
Beta Was this translation helpful? Give feedback.
Unfortunately this is likely to be related to settings on the Jira side, rather than Teleport. My understanding is that Jira uses its own Java-based webserver in front of the application itself, which is likely to be rewriting or changing the
Access-Control-Allow-Origin
headers itself.The easiest resolution here would be to change Jira's concept of its own "public address" to
jira.teleport.example.com
rather thanjira.example.org
, then make Teleport connect to Jira using some kind of private DNS entry rather than the (presumably public)jira.example.org
There may also be ways to disable the CORS mitigation (or lower its aggressiveness) on the Jira side with some launch parameters.