Es scheint, dass vorerst die Antwort auf "Ist es möglich, dass VisualSVN-Server durch IIS auf 443 läuft?" ist "NEIN" .
Am Ende habe ich den VisualSVN-Server an Port 443 und den IIS an Port 8443 arbeiten lassen.
Auf der Seite von VisualSVN Server habe ich folgende Änderungen vorgenommen:
Datei: httpd.conf
;>>> added: LoadModule proxy_module bin/mod_proxy.so LoadModule proxy_http_module bin/mod_proxy_http.so ;>>> on <IfModule ssl_module> I added: SSLProxyEngine On
Datei: httpd-custom.conf
;>>> added: <Location /MyIISWebSite> ProxyPass https://my-domain.com:8443/MyIISWebSite ProxyPassReverse https://my-domain.com:8443/MyIISWebSite </Location>
Also, wenn ich jetzt browse
https://my-domain.com/MyIISWebSite/
Meine URL in der Adressleiste bleibt unverändert und der Inhalt, den ich bekomme, ist der von
https://my-domain.com:8443/MyIISWebSite/
Es ist nicht die perfekte Lösung, aber es ist das Beste, was ich bisher finden konnte ...