We have hosted jira on apache and trying to redirect to a custom made page when jira is down. I have used redirection option in apache but it is not working.Any idea on how we set up?
Still the same.i made the below changes and shutdown jira.But i got a "this webpage not available error"..instead i want a customaized page
<VirtualHost *:80>
ServerName jira5-test
ProxyRequests Off
ProxyPreserveHost On
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
ProxyPass / http://localhost:8080/
ProxyPassReverse / http://localhost:8080/
<Location />
Order allow,deny
Allow from all
</Location>
ErrorLog /etc/httpd/conf/error.log
LogLevel debug
CustomLog /etc/httpd/conf/error.log combined
</VirtualHost>
For JIRA, I use a simpler vhost without the redirects as they are controlled by JIRA itself.
The vhost that I use is here:
<VirtualHost *:80> #Creating virtual host ServerAdmin admin@domain.com ServerName jira.example.com ServerAlias jira.example.com ProxyRequests Off ProxyPreserveHost On <Proxy *> Order deny,allow Allow from all </Proxy> ProxyPass / http://your_jira_original_url:8080/ ProxyPassReverse / http://your_jira_original_url:8080/ <Location /> Order allow,deny Allow from all </Location> ErrorLog /path/to/example.com-error.log LogLevel debug CustomLog /path/to/example.com-access.log combined </VirtualHost>
Please give it a try and let me know how it goes.
Regards, Celso Yoshioka
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.
Hi there,
Could you please add your vhost here so we can try to determine what is causing the issue?
Regards,
Celso Yoshioka
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.