| Posted: 04 July 2008 at 3:22am | IP Logged
|
|
|
Hi,
Appologies if this has already been asked but i can't see any specifics already on the forum...
I'm running IIS as my (single server) main web server, with apache installed to give SVN functionality over the web using SSL.
I'm trying to do a reverse proxy so that i can access the svn server from the internet.
I can get a simple rewrite rule to work when i'm inside the network, but the moment i convert this to a proxy rule it gives me a 'cannot display web page error'
The rule that does work is...
RewriteEngine on RewriteBase / RewriteRule svn(.+) https://server:8443/svn$1 [NC]
But the moment i put the [NC,P] in it stops. A working path would be something like https://server:8443/svn/Main and i would like to access it from the internet with something like https://www.mydomain.com/svn/Main
Both apache and IIS are on the same box, although there are different SSL certificates on the apache and IIS. Apache is listening on port 8443.
Any help very gratefully received
Thanks in advance
Andy
|