ReverseProxy auf Tomcat

koepie

New Member
Hallo,
habe einen ReverseProxy auf einen Tomcat applikation laufen, alles lief ganz gut bis ich ein dist upgrade gemacht habe...

Nun bekomm ich die Fehlermeldung: Request exceeded the limit of 10 internal redirects due to probable configuration error.


Im log sieht man einen Loop

Code:
[Wed Nov 30 23:47:29.584334 2016] [core:debug] [pid 17555:tid 139796177463040] core.c(3518): [client 95.90.213.63:32597] AH00121: r->uri = /errors/404.html, referer: https://pool.xx/
[Wed Nov 30 23:47:29.584337 2016] [core:debug] [pid 17555:tid 139796177463040] core.c(3525): [client 95.90.213.63:32597] AH00122: redirected from r->uri = /errors/404.html, referer: https://pool.xx/


meine apache config schaut so aus:

Code:
<Location />		
		#RewriteEngine On
		#RewriteBase /
		#RewriteCond %{REQUEST_FILENAME} !-f
	    #RewriteCond %{REQUEST_FILENAME} !-d
	    #RewriteRule ^(.+)$ /$1 [L,QSA]

		Order allow,deny
	    Allow from all
		Require all granted
		ProxyPass http://localhost:8089/guacamole/ max=30 flushpackets=on
        ProxyPassReverse http://localhost:8089/guacamole/
        ProxyPassReverseCookiePath /guacamole /
 
            #    SetEnvIf Request_URI "^/tunnel" dontlog
            #    CustomLog  /var/log/apache2/guac.log common env=!dontlog
	       LogLevel Debug
		   
		   #ErrorDocument     404                                /var/www/html/index.html

	</Location>
Könnt ihr mir sagen wie ich den Fehler los werde?
 
Ist denn der Tomcat Service denn unter 8089 erreichbar?

Ansonsten, was spricht gegen mod_jk? Über mod_jk geht das etwas einfacher und es spricht direkt den Tomcat Worker an.
 
Back
Top