* Put the subversion server in the right vhost.
svn path=/configurations/trunk/tud/; revision=10968
Eelco Dolstra committed
Mar 5, 2008 at 15:44 UTC
84b67e0c5a10e9c2ed9143573f93895ae8633d94
1 file changed
+14
-18
cartman.nix
+14
-18
@@ -251,29 +251,25 @@ rec {
251
adminAddr = "eelco@cs.uu.nl";
252
hostName = "localhost";
253
254
- # !!! move
255
- extraSubservices = [
256
- { function = import /etc/nixos/nixos/upstart-jobs/apache-httpd/subversion.nix;
257
- config = {
258
- urlPrefix = "";
259
- toplevelRedirect = false;
260
- dataDir = "/data/subversion";
261
- notificationSender = "root@buildfarm.st.ewi.tudelft.nl";
262
- userCreationDomain = "st.ewi.tudelft.nl";
263
- organisation = {
264
- name = "Software Engineering Research Group, TU Delft";
265
- url = http://www.st.ewi.tudelft.nl/;
266
- logo = "/serg-logo.png";
267
- };
268
- };
269
- }
270
- ];
271
-
254
virtualHosts = [
255
256
{ hostName = "buildfarm.st.ewi.tudelft.nl";
257
documentRoot = pkgs.lib.cleanSource ./webroot;
258
extraSubservices = [
259
+ { function = import /etc/nixos/nixos/upstart-jobs/apache-httpd/subversion.nix;
260
+ config = {
261
+ urlPrefix = "";
262
+ toplevelRedirect = false;
263
+ dataDir = "/data/subversion";
264
+ notificationSender = "root@buildfarm.st.ewi.tudelft.nl";
265
+ userCreationDomain = "st.ewi.tudelft.nl";
266
+ organisation = {
267
+ name = "Software Engineering Research Group, TU Delft";
268
+ url = http://www.st.ewi.tudelft.nl/;
269
+ logo = "/serg-logo.png";
270
+ };
271
+ };
272
+ }
273
{ function = import /etc/nixos/nixos/upstart-jobs/apache-httpd/dist-manager.nix;
274
config = rec {
275
urlPrefix = "/releases";