I have followed your example on the documents (https://confluence.atlassian.com/display/DOC/Using+Apache+with+mod_proxy#UsingApachewithmod_proxy-complex) to the tee and I am not seeing the jira or confluence installations come up.
My apache conf includes the following:
<VirtualHost 99.198.122.241:80> ServerName wiki.darkprospect.net ProxyRequests Off <Proxy *> Order deny,allow Allow from all </Proxy> ProxyPass / http://localhost:8090/ ProxyPassReverse / http://localhost:8090/ <Location /> Order allow,deny Allow from all </Location> </VirtualHost> <VirtualHost 99.198.122.241:80> ServerName jira.darkprospect.net ProxyRequests Off <Proxy *> Order deny,allow Allow from all </Proxy> ProxyPass / http://localhost:8080/ ProxyPassReverse / http://localhost:8080/ <Location /> Order allow,deny Allow from all </Location> </VirtualHost>
The answer ended up being so simple that I laughed when I figured it out. Jira's guide specifies `<VirtualHost *>` as the needed name however when I altered the file to `<VirtualHost 99.198.122.241:80>` it works just fine. Chose the answer that was closest to my answer figured out.
Your virtual host definitions look off: I assume you redacted the server names, in the virtualhost tag, but I wouldn't have thought *="" to be legal.
Editted it to be what I currently have on the server.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This was my problem also.
And I had to add a NamedVirtualHost directive to my apache configuration to make sure apache was happy.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Try modifying the conf/server.xml file and add
proxyName
=
"jira.example.net" to the Connector deifnition.
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.
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.