I am using IIS7 and the Application Request Routing extension to act as a reverse proxy to Subversion running on Apache.
The proxy works fine and I am able to explore t
IIS7 has an applicationHost.config file which has a security section that limits file extensions:
....
More information:
http://learn.iis.net/page.aspx/143/how-to-use-request-filtering/
I added a similar section to my site's web.config and used a
node to remove all extensions. Now I can serve .cs, .csproj files and others, but I cannot serve .config files yet.
Edit: Removing the hiddenSection nodes corrected this for web.config files too. Here is my local web.config file: