The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I need to force using https protocol on rest/api (I mean https://domain.com/rest/api/*) but unfortunately I couldn't manage to do that.
I've modified WEB-INF/web.xml and added these lines:
<security-constraint>
<display-name>HTTP to HTTPs Redirection</display-name>
<web-resource-collection>
<web-resource-name>all-except-attachments</web-resource-name>
<url-pattern>*.jsp</url-pattern>
<url-pattern>*.jspa</url-pattern>
<url-pattern>/rest/*</url-pattern>
<url-pattern>/browse/*</url-pattern>
</web-resource-collection>
<user-data-constraint>
<transport-guarantee>CONFIDENTIAL</transport-guarantee>
</user-data-constraint>
</security-constraint>
but still it's possible to load rest api using http protocol. Of course my JIRA site is force to https method but not rest API
http://domain.com => it's always redirects to https
http://domain.com/rest/api/* => not redirects to https
Can anyone point me how I manage to force using https protocol on rest api?
👋 Hi there Jira Community! A few months ago we shared with you plans around renaming epics in your company-managed projects. As part of these changes, we highlighted upcoming changes to epics on...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.