I thought that I was the only one in the world trying to make such a setting work.
I fixed this by adding the line: AspNet Files Directories Virtual
<Directory "C:/Program Files/CruiseControl.NET/webdashboard">
Options FollowSymlinks ExecCGI
AspNet Files Directories Virtual
Order allow,deny
Allow from all
DirectoryIndex index.htm index.aspx default.aspx
</Directory>
I also encoded the encoding of the path to my dotnet infrastructure, but I'm not sure if this is necessary:
<Directory "C:/Windows/Microsoft.NET/Framework/v2.0.50727">
Options FollowSymlinks
Order allow,deny
Allow from all
</Directory>
source
share