CruiseControl.Net Dashboard + Apache - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T06:19:04Zhttp://stackoverflow.com/feeds/question/471276http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/471276/cruisecontrol-net-dashboard-apache1CruiseControl.Net Dashboard + ApacheAdam Tegen2009-01-22T23:24:28Z2009-07-31T19:59:34Z
<p>I'm trying to get cc.net dashboard running on a build machine that also has apache on it.</p>
<p>I've tried installing mod_aspdotnet as described <a href="http://weblogs.asp.net/israelio/archive/2005/09/11/424852.aspx" rel="nofollow">here</a>. I can run the sample aspx page, but I am unable to get cc.net to run. Is there some magic I need to do?</p>
<p>For what it's worth, <a href="http://localhost/ccnet" rel="nofollow">http://localhost/ccnet</a> manages to redirect me to <a href="http://localhost/ccnet/ViewFarmReport.aspx" rel="nofollow">http://localhost/ccnet/ViewFarmReport.aspx</a> but that gives me a 404 error.</p>
<p>Below is the relevant httpd.conf section:</p>
<pre><code>#asp.net
LoadModule aspdotnet_module "modules/mod_aspdotnet.so"
AddHandler asp.net asax ascx ashx asmx aspx axd config cs csproj licx rem resources resx soap vb vbproj vsdisco webinfo
<IfModule mod_aspdotnet.cpp>
# Mount the ASP.NET /asp application
AspNetMount /ccnet "C:/Program Files/CruiseControl.NET/webdashboard"
#/SampleASP is the alias name for asp.net to execute
# Map all requests for /asp to the application files
Alias /ccnet "C:/Program Files/CruiseControl.NET/webdashboard"
#maps /ccnet request to "C:/Program Files/CruiseControl.NET/webdashboard"
#now to get to the /ccnet type http://localhost/ccnet
#It'll redirect http://localhost/ccnet to "C:/Program Files/CruiseControl.NET/webdashboard"
# Allow asp.net scripts to be executed in the /SampleASP example
<Directory "C:/Program Files/CruiseControl.NET/webdashboard">
Options FollowSymlinks ExecCGI
Order allow,deny
Allow from all
DirectoryIndex index.htm index.aspx default.aspx
#default the index page to .htm and .aspx
</Directory>
# For all virtual ASP.NET webs, we need the aspnet_client files
# to serve the client-side helper scripts.
AliasMatch /aspnet_client/system_web/(\d+)_(\d+)_(\d+)_(\d+)/(.*) "C:/Windows/Microsoft.NET/Framework/v$1.$2.$3/ASP.NETClientFiles/$4"
<Directory "C:/Windows/Microsoft.NET/Framework/v*/ASP.NETClientFiles">
Options FollowSymlinks
Order allow,deny
Allow from all
</Directory>
</IfModule>
#asp.net
</code></pre>
http://stackoverflow.com/questions/471276/cruisecontrol-net-dashboard-apache/538386#5383860Answer by ryan for CruiseControl.Net Dashboard + Apacheryan2009-02-11T19:32:05Z2009-02-11T19:32:05Z<p>I thought I was the only one in the world trying to get such a setup working.</p>
<p>I fixed this by adding the line: AspNet Files Directories Virtual</p>
<pre><code> <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
#default the index page to .htm and .aspx
</Directory>
</code></pre>
<p>I also card-coded the path to my dotnet framework, but I'm not sure if that is necessary:</p>
<pre><code><Directory "C:/Windows/Microsoft.NET/Framework/v2.0.50727">
Options FollowSymlinks
Order allow,deny
Allow from all
</Directory>
</code></pre>
http://stackoverflow.com/questions/471276/cruisecontrol-net-dashboard-apache/543066#5430661Answer by Adam Tegen for CruiseControl.Net Dashboard + ApacheAdam Tegen2009-02-12T20:19:55Z2009-02-12T20:19:55Z<p>I needed to add both:</p>
<ul>
<li>AliasMatch /aspnet_client/system_web/(\d+)<em>(\d+)</em>(\d+)<em>(\d+)/(.</em>) "C:/Windows</li>
<li>AspNet Files Directories Virtual</li>
</ul>
<p>See xml:</p>
<pre><code><IfModule mod_aspdotnet.cpp>
# Mount the ASP.NET /asp application
AspNetMount /ccnet "C:/Program Files/CruiseControl.NET/webdashboard"
#maps /ccnet request to "C:/Program Files/CruiseControl.NET/webdashboard/default.aspx"
AliasMatch /ccnet/(.*) "C:/Program Files/CruiseControl.NET/webdashboard/default.aspx"
# Allow asp.net scripts to be executed in the /SampleASP example
<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
#default the index page to .htm and .aspx
</Directory>
# For all virtual ASP.NET webs, we need the aspnet_client files
# to serve the client-side helper scripts.
AliasMatch /aspnet_client/system_web/(\d+)_(\d+)_(\d+)_(\d+)/(.*) "C:/Windows/Microsoft.NET/Framework/v$1.$2.$3/ASP.NETClientFiles/$4"
<Directory "C:/Windows/Microsoft.NET/Framework/v*/ASP.NETClientFiles">
Options FollowSymlinks
Order allow,deny
Allow from all
</Directory>
</IfModule>
</code></pre>
http://stackoverflow.com/questions/471276/cruisecontrol-net-dashboard-apache/686134#6861341Answer by Frank Shearar for CruiseControl.Net Dashboard + ApacheFrank Shearar2009-03-26T14:53:50Z2009-03-26T14:53:50Z<p>This is what I've done, inspired by Adam's answer:</p>
<pre><code>AliasMatch /ccnet(.*\.aspx.*) "C:/Program Files/CruiseControl.NET/webdashboard/default.aspx"
Alias /ccnet/ "C:/Program Files/CruiseControl.NET/webdashboard/
</code></pre>
<p>Try match all the .aspx files to the webdashboard application, otherwise just pull stuff off the filesystem.</p>
<p>I now have working css, images, application stuff, CCTray download link.</p>
http://stackoverflow.com/questions/471276/cruisecontrol-net-dashboard-apache/1167052#11670520Answer by Mark for CruiseControl.Net Dashboard + ApacheMark2009-07-22T17:54:53Z2009-07-22T17:54:53Z<p>Frank's answer worked for me (once I realized that the order matters). Call AliasMatch first, apparently Alias resolution occurs in the order listed in the .conf file and /ccnet matches before /ccnet(.<em>.aspx.</em>). </p>
http://stackoverflow.com/questions/471276/cruisecontrol-net-dashboard-apache/1214567#12145670Answer by TridenT for CruiseControl.Net Dashboard + ApacheTridenT2009-07-31T19:59:34Z2009-07-31T19:59:34Z<p>+1, it works perfectly by adding the flollowing line before the Alias line</p>
<pre><code>AliasMatch /ccnet(.*\.aspx.*) "C:/Program Files/CruiseControl.NET/webdashboard/default.aspx"
</code></pre>
<p>thx for your help guys !</p>