The Dashboard needs to connect over the network to each of Build Servers you want to report on. If you have changed any of the remoting configuration for your servers, you'll need those details now. (See Server Application Config File for more details on configuring remoting and management URLs.)
To configure the dashboard, add a <server> tag for each CruiseControl.NET Server you want to monitor to the <servers> section.
Example
<servers>
<server name="local" url="tcp://localhost:21234/CruiseManager.rem" allowForceBuild="true" allowStartStopBuild="true" />
</servers>
Configuration Elements
<server> tags have the following syntax:
| Node |
Description |
Type |
Required |
Default |
| name |
A referential name for the server - this must be unique for each server monitored by the Dashboard |
string |
yes |
n/a |
| url |
The management URL for the Server |
string |
yes |
n/a |
| allowForceBuild |
Displays or hides the Force Build button on the Project Dashboard page |
bool |
no |
false |
| allowStartStopBuild |
Displays or hides the Stop Build button on the Project Dashboard page. Stopping a build will stop the project's triggers so that they will not trigger new builds until the project is started again; this will not abort a build that is in progress. |
bool |
no |
false |