You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Sometime when selecting option within our crowd application our URL will become corrupted by dropping the "/" after our domainname centropy.us.
Here a few examples of what i'm talking about:
I'm receiving:
https://crowd.centropy.uscrowd/console/login.action
Should be receiving:
https://crowd.centropy.us/crowd/console/login.action
I'm receiving:
https://crowd.centropy.uscrowd/console/secure/user/view!default.action?name=rpatterson&directoryID=2031617
Should be receiving:
https://crowd.centropy.us/crowd/console/secure/user/view!default.action?name=rpatterson&directoryID=2031617
I'm receiving:
https://crowd.centropy.uscrowd/console/secure/application/viewdetails.action?ID=1212417
Should be receiving:
https://crowd.centropy.us/crowd/console/secure/application/viewdetails.action?ID=1212417
When this happens I see the following error "The proxy server is refusing connections"
I am required to manually add the "/" after the domainname centropy.us/ to get the URL to work.
Any Idea on what would be the fix for this would be greatly appricated
Ron Patterson
That is often caused by a misconfigured proxy. What proxy is it and what do the proxy pass lines say?
HTTP Proxy is configured as follows:
# Crowd
<Virtualhost *:80>
ServerName crowd.centropy.us
Redirect permanent / https://crowd.centropy.us
</Virtualhost>
<Virtualhost *:443>
ServerName crowd.centropy.us
SSLEngine on
SSLProxyEngine on
SSLProxyVerify none
SSLProxyCheckPeerCN off
SSLProxyCheckPeerName off
SSLProxyCheckPeerExpire off
SSLCertificateFile /etc/httpd/conf/sslGodaddy/xxxxxxxxxx.crt
SSLCertificateKeyFile /etc/httpd/conf/sslGodaddy/xxxxxxxxxx.key
SSLCertificateChainFile /etc/httpd/conf/sslGodaddy/xxxxxxxxxx.crt
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
ProxyRequests Off
ProxyPreserveHost On
ProxyPass / http://172.xxx.xxx.xxx:8095/
ProxyPassReverse / http://172.xxx.xxx.xxx:8095/
</Virtualhost>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Bother. The behaviour you're seeing is usually caused by mismatched proxy strings.
e.g. ProxyPass /jira http://172.x.x.x:8095/jira/
or
ProxyPass / http://172.xxx.xxx.xxx:8095/
ProxyPassReverse / http://172.xxx.xxx.xxx:8095
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.