I have Jira Service Desk and Confluence running on the same server. This is my intended setup:
Currently:
Seeing as :8090/wiki works, I would assume the issue lies with either the confluence connector or my vhost configuration?
Connector:
<
Connector port="8090"
connectionTimeout="20000"
redirectPort="8443"
maxThreads="48"
minSpareThreads="10"
enableLookups="false"
acceptCount="10"
debug="0"
URIEncoding="UTF-8"
protocol="org.apache.coyote.http11.Http11NioProtocol"
proxyName="support.mydomain.com"
proxyPort="80"
scheme="http"
/>
vhost:
<VirtualHost *:80>
ServerName support.mydomain.com
ProxyRequests Off
ProxyVia Off
<Proxy *>
Require all granted
</Proxy>
ProxyPass / http://127.0.0.1:8080/
ProxyPassReverse / http://127.0.0.1:8080/
ProxyPass /wiki http://127.0.0.1:8090/wiki
ProxyPassReverse /wiki http://127.0.0.1:8090/wiki
</VirtualHost>
I would appreciate any guidance!
Thank you,
Michael
I was pretty much there, just missed this crucial step in the proxy configuration!
Uncomment the connector listed under the HTTP - Proxying Confluence via Apache or Nginx over HTTP heading.
https://confluence.atlassian.com/doc/using-apache-with-mod_proxy-173669.html
All sorted now, thanks!
It is great to know that you managed to get it going! Let us know if there is anything else we could help you with.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @!
As I understand, you need to access Confluence using the …/wiki context path while behind a reverse proxy.
Even though the Context Path is correctly set, we still need to set the Base URL so Confluence can work properly. You will need to access your Confluence via the support.mydomain.com:8090/wiki URL, from there, you should be able to set the Base URL.
You can check these documents here:
I hope this helps!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi thanks for responding. My base URL is currently set to support.mydomain.com/wiki but visiting that address does not work. I can only access my wiki by visiting support.mydomain.com:8090/wiki and when I land on the wiki it warns me:
Your URL doesn't match
Confluence's base URL is set to http://support.mydomain.com/wiki but you are accessing Confluence from http://support.mydomain.com:8090/wiki .
So my base URL is already set to what I want it to be, I just can't visit on that URL. I guess I just need to figure out why I can't access confluence on the context path without the port 8090
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.