I following the instructions in couple links as below, but auto redirect does not work. Users will type "crucible.domain.com" then it'll redirect to https://crucible.domain.com in any browsers like chrome, EXP, Edge, firefox, etc.
Does someone have any idea?
------------------------------------------------------
Changes I made:
(1) Cd C:\Atlassian\fecru-4.7.2\content\WEB-INF
Edit Web.xml:
Add this section to the bottom of web.xml:
<security-constraint>
<web-resource-collection>
<web-resource-name>Restricted URLs</web-resource-name>
<url-pattern>/*</url-pattern>
</web-resource-collection>
<user-data-constraint>
<transport-guarantee>CONFIDENTIAL</transport-guarantee>
</user-data-constraint>
</security-constraint>
(2) Edit C:\Atlassian\fecru-4.7.2\content\WEB-INF\urlrewrite.xml
<rule>
<condition type="scheme" operator="notequal">https</condition>
<condition name="host" operator="equal">crucible.domain.com</condition>
<from>^/(.*)</from>
<to type="permanent-redirect" last="true">https://crucible.domain.com/$1</to>
</rule>
(3) edit c:\Atlassian\fecru-4.7.2\config.xml
Comment out http bind=… as below:
<web-server >
<!-- <http bind=":6060"/> -->
</web-server>
(4) restart Crucible
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.