Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,559,612
Community Members
 
Community Events
185
Community Groups

Confluence Questions set up like answers.atlassian.com

Hi,

We'd like to have a similar page set up like answers.atlassian.com using Confluence Questions.

The requirements are:

  • separate domain from Confluence (eg. answers.xy.com while Confluence is wiki.xy.com) - not a simple redirect
  • SSO using crowd

Well, that's it. Is this possible? What do I need to do to have a setup like that?

 

1 answer

0 votes
Jobin Kuruvilla [Adaptavist]
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
Dec 14, 2016

If you cannot live with a redirect, it will have to be a separate installation of Confluence. That will mean a separate license too. 

Thanks for the answer.

A simple url redirect would be, well, not the desired solution.

Is it possible to setup some Apache magic maybe (or something similar) to serve /questions on a different domain? I'm also fine with the services being xy.com/wiki and xy.com/answers if this makes it easier.

Jobin Kuruvilla [Adaptavist]
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
Dec 14, 2016

Yes, it won't be a simple redirect. It will be done by Apache or something similar. That should be possible. Unfortunately, I do not have any code to share.

There is no problem in using Apache as a proxy and whatever domain you wish (I believe it is not fully supported meaning if you have problems concerning that part of the setup, you may get support, but it is not guaranteed). Confluence uses a server base url (https://confluence.atlassian.com/conf510/configuring-the-server-base-url-829078159.html) which might cause problems if you intend to serve the same instance from different urls.

That being said, here's a sample Apache configuration so you can find out by yourself. I've changed and removed a lot of lines, so treat this only as an example:

<VirtualHost APACHE_IP:80>
  ServerName answers.domain.com 
  
  ErrorLog "/var/log/apache2/answers_error.log"
  TransferLog "/var/log/apache2/answers_access.log"
  
  ProxyTimeout 30
  ProxyRequests Off
  ProxyPreserveHost On
  
  <Location />
    Order allow,deny
    Allow from all
    ProxyPass  http://CONFLUENCE_IP:8090 ttl=5 timeout=300 retry=0
    ProxyPassReverse  http://CONFLUENCE_IP:8090
  </Location>
</VirtualHost>

Proxying to /questions is something I don't know how to solve since css, js and other files seem to be fetched relative to the context path provided in the server.xml and not the full Base URL.

PS. I personally use AJP instead of HTTP for the proxy https://confluence.atlassian.com/adminjiraserver071/configuring-apache-reverse-proxy-using-the-ajp-protocol-802593042.html.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events