How can I configure Apache to access Subversion only through HTTPS and not through HTTP. HTTP need to use for access some other application in the same machine.

Please help on this. I am in the middle.

Thanks for the great help

link|improve this question

11% accept rate
feedback

2 Answers

Basically, you should declare two virtual hosts using Apache VirtualHost directive, one for port 443 (HTTPS) and another one for port 80. Since virtual hosts can have completely different configs, you can easily serve Subversion on 443 and anything else on 80.

link|improve this answer
I hope it will help me. Thank you Alex. – Premjith Aug 19 '11 at 5:04
feedback

you should be able to have both http & https for both applications. Set them up on a Virtual domain, and assign a subdomain for them ie subversion.mydomain.com and otherapp.mydomain.com.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.