nixpkgs/modules/services
Sander van der Burg 0d35699507 Implemented virtual host support. Now it's possible to assign web applications to virtual host, for example:
{
  ...

  services = {
    tomcat = {
      enable = true;
      virtualHosts = [
        { name = "test1.localhost";
          webapps = [ mypkgs.HelloApp ];
        }
        { name = "test2.localhost";
          webapps = [ mypkgs.ByeApp ];
        }
      ];
    };
  };
}


svn path=/nixos/trunk/; revision=16654
2009-08-10 18:45:18 +00:00
..
audio svn path=/nixos/branches/modular-nixos/; revision=16397 2009-07-16 15:01:56 +00:00
databases * Got rid of the extraPath field in jobs (use 2009-07-15 11:19:11 +00:00
hardware * Clean up the udev module. 2009-08-10 18:41:57 +00:00
logging * Continued refactoring the tree: moved most Upstart jobs (namely 2009-05-24 23:13:23 +00:00
mail * Move the uid/gid mappings into a module. This allows other modules 2009-05-29 14:25:56 +00:00
misc * Added a module for the bluetooth daemon. 2009-08-10 18:25:09 +00:00
monitoring * Move the uid/gid mappings into a module. This allows other modules 2009-05-29 14:25:56 +00:00
network-filesystems * Continued refactoring the tree: moved most Upstart jobs (namely 2009-05-24 23:13:23 +00:00
networking * Added a module for the bluetooth daemon. 2009-08-10 18:25:09 +00:00
printing * Refactoring the Upstart module. Got rid of job.extraEtc, it's 2009-07-15 09:06:36 +00:00
scheduling * Move the uid/gid mappings into a module. This allows other modules 2009-05-29 14:25:56 +00:00
system * Added a module for the bluetooth daemon. 2009-08-10 18:25:09 +00:00
ttys * More Upstart refactoring. 2009-07-16 13:55:11 +00:00
web-servers Implemented virtual host support. Now it's possible to assign web applications to virtual host, for example: 2009-08-10 18:45:18 +00:00
x11 Add Wacom X11 driver support 2009-08-03 19:55:33 +00:00