This is a discussion on [newbie neeeds help] apache server with ssl (opensa) before two other servers within the Windows Web Servers forums, part of the Web Server and Related Forums category; I want to set an apache server with ssl (opensa) before two other servers (tomcat and iis), so that apache ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
I want to set an apache server with ssl (opensa) before two other
servers (tomcat and iis), so that apache server speaks with clients "ssl" and with the servers behind "clear text". So w/o ssl i got redirection with: <IfModule mod_rewrite.c> RewriteEngine on RewriteLog "logs/rewrite_log" RewriteLogLevel 0 RewriteRule ^/javaweb(.*) http://here1.com:8090/javaweb$1 [P] RewriteRule ^/CAPS(.*) http://there2.com/CAPS$1 [P] </IfModule> but it seems not to work on ssl version. Do you have some ideas? Thanks in advance Daniel. |