Geschrieben am: 26.04.2012 um 11:42 Uhr
Zuletzt editiert am: 26.04.2012 um 11:51 Uhr
|
|
Hallöchen Liebe Community ,
ich setze derzeit bei mir auf meinem Proxy1 einen Reverse Proxy auf der in der DMZ steht. Jetzt habe Ich den Proxy soweit das er alles vom Webserver1 Weiterleitet und übernimmt Sprich : aus http://www.webserver1.de/hallo123 macht er nun http://www.proxy1.de/hallo123.
Nun habe ich das Problem die anmeldung verläuft über https://www.webserver1.de/login/ und ab da klappt es nicht mehr.
Wie bekomme ich es hin das der Proxy die HTTPS auch nimmt.
Configurations Beispiel wird mit proxy1 und team-ulm.de angegeben:
Geladene Module:
Zitat:
- proxy
- proxy_http
- proxy_html
- ssl
- proxy_connect
- mem_cache
- disk_cache
- headers
VHost-proxy
Zitat:
<VirtualHost *>
ServerAdmin webmaster@proxy1.de
ServerName proxy.proxy1.com
DocumentRoot /var/proxy/
SetOutputFilter INFLATE;proxy-html;DEFLATE
#ProxyHTMLLogVerbose On
ProxyHTMLExtended On
ProxyPass / http://proxy.proxy1.com/
ProxyPassReverseCookieDomain http://proxy.proxy1.com/ revProxy
ProxyPassReverseCookiePath / /
ProxyHTMLURLMap http://proxy.proxy1.com/ /
<Location />
ProxyPassReverse /
ProxyHTMLURLMap / /
ProxyHTMLURLMap / /
ProxyHTMLEnable On
RequestHeader unset Accept-Encoding
</Location>
</VirtualHost>
proxy.conf
Zitat:
<IfModule mod_proxy.c>
ProxyRequests Off
ProxyVia full
ProxyPass / https://www.team-ulm.de
</IfModule>
Mit dieser Configuration bekomme ich immer den Fehler 500 Internal Server Error.
Danke einfach für die mühe,
Gruß Michael
|