Restore extraWorkersProperties option for apache httpd tomcat-connector, issue https://github.com/NixOS/nixpkgs/issues/2202
This commit is contained in:
parent
dac1791fb5
commit
51494f2c33
|
@ -29,6 +29,14 @@ ${extraWorkersProperties}
|
||||||
'';
|
'';
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
|
|
||||||
|
options = {
|
||||||
|
extraWorkersProperties = pkgs.lib.mkOption {
|
||||||
|
default = "";
|
||||||
|
description = "Additional configuration for the workers.properties file.";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
extraModules = [
|
extraModules = [
|
||||||
{ name = "jk"; path = "${pkgs.tomcat_connectors}/modules/mod_jk.so"; }
|
{ name = "jk"; path = "${pkgs.tomcat_connectors}/modules/mod_jk.so"; }
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in New Issue