Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Run SVN repositories under IIS

How to setup IIS 7.0 to serve SVN repositories?

First of all I need to make possible remote users to checkout and web-based viewing isn't really necessary.

I tried to setup WebSVN but got no success: can't set parent folder for a number of repositories, can't switch off anonymous access, can't link non-anonymous access and access list.

Are there others products for SVN under IIS? Or it's better to learn how to setup WebSVN properly?

like image 530
abatishchev Avatar asked Jan 29 '10 22:01

abatishchev


2 Answers

There are no server modules for IIS, you can't serve an SVN repository directly from IIS.

Serve a subversion repository through Apache, the built in svnserve, or proxy it via ssh.

like image 126
nos Avatar answered Oct 05 '22 06:10

nos


There is a commercial solution available named SVNIsapi. But I have no idea how well it works because it's too expensive for me to even try out.

But why insist on using IIS? Just install the VisualSVN server, then configure WebSVN with that - WebSVN also works well with Apache.

like image 23
Stefan Avatar answered Oct 05 '22 04:10

Stefan