Hi,

On 20/03/2014 16:05, Dennis Jacobfeuerborn wrote:
Hi,
I just installed a fresh Jenkins behind Apache httpd and while Jenkins
is available it tells me "It appears that your reverse proxy set up is
broken." but I don't know why.

I came across the same problem earlier today. My setup had been working but I started to get the message. I did a bit of digging and it seems that the checks for broken proxies were "improved" in 1.552.

Take a look at

https://wiki.jenkins-ci.org/display/JENKINS/Running+Jenkins+behind+Apache

specifically...

This is my httpd config:

<VirtualHost *:80>
     ServerName jenkins.local
     ProxyRequests Off
     ProxyPreserveHost On
     ProxyPass           / http://127.0.0.1:8080/
you need nocanon at the end of ProxyPass
     ProxyPassReverse    / http://127.0.0.1:8080/
and need to add

AllowEncodedSlashes NoDecode

</VirtualHost>

I did this and all works fine with a reloaded apache configuration.

Hope this helps.

Best Regards

Richard

P.S. I added a note into
https://wiki.jenkins-ci.org/display/JENKINS/Jenkins+says+my+reverse+proxy+setup+is+broken
to warn people that things changed in 1.552.


What specifically is wrong with this configuration?

Regards,
   Dennis

--
You received this message because you are subscribed to the Google
Groups "Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send
an email to jenkinsci-users+unsubscr...@googlegroups.com
<mailto:jenkinsci-users+unsubscr...@googlegroups.com>.
For more options, visit https://groups.google.com/d/optout.

--
You received this message because you are subscribed to the Google Groups "Jenkins 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to