Still trying to fix "It appears that your reverse proxy set up is broken" with IIS 8.5

2017-08-24 Thread Terry Lacy
We still have no solution for this. See https://groups.google.com/d/msg/jenkinsci-users/wmhprlRiVmI/7q4Il_xRBgAJ for more details. Does anyone have a working IIS 8.5 web.config that doesn't give "your reverse proxy set up is broken"? Terry -- You received this message because you are

Solving for It appears that your reverse proxy set up is broken when running tomcat

2015-01-06 Thread Maureen Barger
Hi - Running LTS 1.580.2 served from Tomcat and fronted by Apache using mod_jk. Is it possible to solve for the reverse proxy error with this setup, or do we have to change to using Apache to proxy to tomcat? -- You received this message because you are subscribed to the Google Groups Jenkins

Re: It appears that your reverse proxy set up is broken.

2014-03-26 Thread Marius Gedminas
is available it tells me It appears that your reverse proxy set up is broken. but I don't know why. This is my httpd config: VirtualHost *:80 ServerName jenkins.local ProxyRequests Off ProxyPreserveHost On ProxyPass / http://127.0.0.1:8080

Re: It appears that your reverse proxy set up is broken.

2014-03-25 Thread Dennis Jacobfeuerborn
proxy set up is broken. but I don't know why. This is my httpd config: VirtualHost *:80 ServerName jenkins.local ProxyRequests Off ProxyPreserveHost On ProxyPass / http://127.0.0.1:8080/ ProxyPassReverse/ http://127.0.0.1:8080/ /VirtualHost What

Re: It appears that your reverse proxy set up is broken.

2014-03-25 Thread Dennis Jacobfeuerborn
is available it tells me It appears that your reverse proxy set up is broken. but I don't know why. This is my httpd config: VirtualHost *:80 ServerName jenkins.local ProxyRequests Off ProxyPreserveHost On ProxyPass / http://127.0.0.1:8080/ ProxyPassReverse/ http

Re: It appears that your reverse proxy set up is broken.

2014-03-21 Thread Marius Gedminas
On Thu, Mar 20, 2014 at 09:05:47AM -0700, Dennis Jacobfeuerborn wrote: 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. https://wiki.jenkins-ci.org/display/JENKINS

Re: It appears that your reverse proxy set up is broken.

2014-03-21 Thread Daniel Beck
On 20.03.2014, at 17:05, Dennis Jacobfeuerborn djacobfeuerb...@gmail.com wrote: 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. Does the error message show up after

Re: It appears that your reverse proxy set up is broken.

2014-03-21 Thread Richard Mortimer
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

Re: It appears that your reverse proxy set up is broken.

2014-03-21 Thread Niranjan Rao
, 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. This is my httpd config: VirtualHost *:80 ServerName jenkins.local ProxyRequests Off

It appears that your reverse proxy set up is broken.

2014-03-20 Thread Dennis Jacobfeuerborn
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. This is my httpd config: VirtualHost *:80 ServerName jenkins.local ProxyRequests Off ProxyPreserveHost

RE: It appears that your reverse proxy set up is broken.

2014-03-20 Thread Arthur_Herman
] On Behalf Of Dennis Jacobfeuerborn Sent: Thursday, March 20, 2014 12:06 PM To: jenkinsci-users@googlegroups.com Subject: It appears that your reverse proxy set up is broken. Hi, I just installed a fresh Jenkins behind Apache httpd and while Jenkins is available it tells me It appears that your reverse

Re: It appears that your reverse proxy set up is broken.

2014-03-20 Thread Les Mikesell
On Thu, Mar 20, 2014 at 11:28 AM, arthur_her...@homedepot.com wrote: If you are on Linux, It's much easier to use iptables instead of standing up httpd just to proxy. iptables -t nat -I PREROUTING --src 0.0.0.0/0 --dst 0.0.0.0/0 -p tcp --dport 80 -j REDIRECT --to-ports 8080 But both of