1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-16 18:03:22 +00:00
nixpkgs/modules/services/web-servers
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
..
apache-httpd * Got rid of the extraPath field in jobs (use 2009-07-15 11:19:11 +00:00
jboss.nix * Continued refactoring the tree: moved most Upstart jobs (namely 2009-05-24 23:13:23 +00:00
tomcat.nix 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