Software properties:
Dear all,
I simply try to get Confluence working on a subdomain like sub.domain.tld.
To do so, I read the documentation and the community forums.
After doing so, I felt ready to start.
What I did was to
<VirtualHost XXX.XXX.XXX.XXX:80>
ServerName sub.domain.tld
ProxyRequests Off
# Auth changes in 2.4
<Proxy XXX.XXX.XXX.XXX>
Require all granted
</Proxy>
ProxyPass /synchrony http://<internal_domain>:8091/synchrony
<Location /synchrony>
Require all granted
RewriteEngine on
RewriteCond %{HTTP:UPGRADE} ^WebSocket$ [NC]
RewriteCond %{HTTP:CONNECTION} Upgrade$ [NC]
RewriteRule .* ws://domain.tld:8091%{REQUEST_URI} [P]
</Location>
ProxyPass / h ttp://domain.tld:8090/
ProxyPassReverse / h ttp://domain.tld:8090/
<Location />
Require all granted
</Location>
</VirtualHost><code></code>
Unfortunately, this does not help me.
When entering sub.domain.tld in a browser, I am redirected to the PLESK "standard" webpage. Only entering the port 8090 will allow me to enter the confluence webpage.
Any ideas from your side?
Thank you in advance,
best regards,
Philip
Thank you for your support. This was - unfortunately - only a problem in this post.
The "real" lines are
ProxyPass / http://domain.tld:8090/
ProxyPassReverse / http://domain.tld:8090/
Any other idea on what might be wrong?
Thank you in advance.
Hmm. It looks good to me, so I don't think it's your config.
Two other thoughts -
1) Can you try "sudo netstat - plant" to check that it really is apache listening on port 80?
2) In your apache config, how is Plesk configured?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Your other thoughts were right.
Due to the Plesk integration, the vhost configuration nedded to start with
<VirtualHost XXX.XXX.XXX.XXX:7080 >
ServerName "sub.domain.tld:80"
[...]
After applying these changes, it worked.
Thank you for yur support.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Ah, so Apache was serving up Plesk first on port 80 and then ignoring Confluence because it was listed lower?
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.
@Philip Deubner Is <VirtualHost XXX.XXX.XXX.XXX:7080> a Standard-Port when using Plesk? Or do I have to find out the individual one for my setup?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Nicolas Rehner: 7080 seems to be a Plesk standard port.
So from my assumption, this should also work at your place.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Your proxypass and proxypassreverse lines are wrong.
The first one for synchrony is ok, but the other two are html url links and have too many entries. They should be as simple as the synchrony one, and only one url.
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.