Jayantha Lal Sirisena
Jayantha Lal Sirisena

Reputation: 21366

Create/configure New repository in remote mercurial server on IIS

Are there any tools avaliable to create and configure (Add new users, Change authorization settings ) mercurial repository hosted in IIS server ? Currently I want to remotely log in to the server and need to create new repository and configure it manually.

Upvotes: 2

Views: 260

Answers (1)

Martin Geisler
Martin Geisler

Reputation: 73778

I would take a look at Kallithea. That is a like a hgweb on steriods :) It has user management with authentication against LDAP (so you can use Active Directory), repository management, browsing, etc.

You ask about IIS and I know that it can run Python WSGI applications. Kallithea is based on Pylons and while it's described a difficult, you can run Pylons on IIS if you want.

I would probably install Apache instead or simply use the small web server that comes with Kallithea (depending on the load you expect).

Upvotes: 1

Related Questions