Hello,
I am wondering what if the correct configuration for Apache 2.4. I virtualhost file looks ok per Atlassian's documentation. However, when I type URL it can see Apache's welcome page (subdomain is CNAMEd), but forwarding to confluence is not happening.
Thanks for your help in advance.
This is the config I am using:
<VirtualHost *:80>
ServerName wiki.x.x.com
ServerAdmin webmaster@localhost
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel debug
DocumentRoot /var/domains/wiki/htdocs
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/domains/wiki/htdocs>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
ProxyRequests Off
ProxyPreserveHost On
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
ProxyPass /confluence http://192.168.100.11:8090/confluence
ProxyPassReverse /confluence http://192.168.100.11:8090/confluence
CustomLog /var/log/httpd/confluence.log combined
ErrorLog /var/log/httpd/confluence_error.log
<Location /confluence>
Order allow,deny
Allow from all
</Location>
</VirtualHost>
What URL are you using to access Confluence?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
if you enter the url http://wiki.x.x.com/confluence what do you see in /var/log/httpd/confluence.log or /var/log/httpd/confluence_error.log ?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Without your configs, no one can help you?
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.