Merge pull request #3419 from dmgroenewegen/master

Restore extraWorkersProperties option for apache httpd tomcat-connector
This commit is contained in:
Rob Vermaas 2014-07-31 16:58:02 +02:00
commit a6e1caacda
1 changed files with 8 additions and 0 deletions

View File

@ -29,6 +29,14 @@ ${extraWorkersProperties}
'';
in
{
options = {
extraWorkersProperties = pkgs.lib.mkOption {
default = "";
description = "Additional configuration for the workers.properties file.";
};
};
extraModules = [
{ name = "jk"; path = "${pkgs.tomcat_connectors}/modules/mod_jk.so"; }
];