CruiseControl.Net Dashboard + Apache - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T06:19:04Z http://stackoverflow.com/feeds/question/471276 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/471276/cruisecontrol-net-dashboard-apache 1 CruiseControl.Net Dashboard + Apache Adam Tegen 2009-01-22T23:24:28Z 2009-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 &lt;IfModule mod_aspdotnet.cpp&gt; # 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 &lt;Directory "C:/Program Files/CruiseControl.NET/webdashboard"&gt; Options FollowSymlinks ExecCGI Order allow,deny Allow from all DirectoryIndex index.htm index.aspx default.aspx #default the index page to .htm and .aspx &lt;/Directory&gt; # 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" &lt;Directory "C:/Windows/Microsoft.NET/Framework/v*/ASP.NETClientFiles"&gt; Options FollowSymlinks Order allow,deny Allow from all &lt;/Directory&gt; &lt;/IfModule&gt; #asp.net </code></pre> http://stackoverflow.com/questions/471276/cruisecontrol-net-dashboard-apache/538386#538386 0 Answer by ryan for CruiseControl.Net Dashboard + Apache ryan 2009-02-11T19:32:05Z 2009-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> &lt;Directory "C:/Program Files/CruiseControl.NET/webdashboard"&gt; 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 &lt;/Directory&gt; </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>&lt;Directory "C:/Windows/Microsoft.NET/Framework/v2.0.50727"&gt; Options FollowSymlinks Order allow,deny Allow from all &lt;/Directory&gt; </code></pre> http://stackoverflow.com/questions/471276/cruisecontrol-net-dashboard-apache/543066#543066 1 Answer by Adam Tegen for CruiseControl.Net Dashboard + Apache Adam Tegen 2009-02-12T20:19:55Z 2009-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>&lt;IfModule mod_aspdotnet.cpp&gt; # 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 &lt;Directory "C:/Program Files/CruiseControl.NET/webdashboard"&gt; 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 &lt;/Directory&gt; # 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" &lt;Directory "C:/Windows/Microsoft.NET/Framework/v*/ASP.NETClientFiles"&gt; Options FollowSymlinks Order allow,deny Allow from all &lt;/Directory&gt; &lt;/IfModule&gt; </code></pre> http://stackoverflow.com/questions/471276/cruisecontrol-net-dashboard-apache/686134#686134 1 Answer by Frank Shearar for CruiseControl.Net Dashboard + Apache Frank Shearar 2009-03-26T14:53:50Z 2009-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#1167052 0 Answer by Mark for CruiseControl.Net Dashboard + Apache Mark 2009-07-22T17:54:53Z 2009-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#1214567 0 Answer by TridenT for CruiseControl.Net Dashboard + Apache TridenT 2009-07-31T19:59:34Z 2009-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>