Edit crowd.server.url about merge to access jira directory (crowd)

We have Jira and Confluence hosting external (no direct server access) behind Apache. Our merge uses Jira login through the Atlassian crowd. We wanted to secure our Jira products with SSL. Once we add a direct rule so that the entire http request is redirected to https, we can no longer log into the merge system. Therefore, we temporarily disabled this redirection again.

We found that there is an overview showing when merging in custom directories "crowd.server.url": "http://<our-jira-url>"

, so we guessed it was the culprit. But we did not find a way to edit this value. Neither in the merge administration nor in the file crowd.properties

found in the server paths (installation and application data) do we have access.

Can anyone please tell me what and how should I set up the merge so that I can access our jira-user-directory via https?

+3


source to share


1 answer


Found. You have to change the value for the Crowd (or JIRA) server internal url:

mysql> use confluence;
mysql> update cwd_directory_attribute
    set attribute_value = 'https://your.new.jira.tld/'
    where attribute_name = 'crowd.server.url';

      



Restart Confluence after the update.

+1


source







All Articles