mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-14 06:00:33 +03:00
nixos/tomcat: allow non-package paths in services.tomcat.webapps
Resolves #44370.
This commit is contained in:
parent
65c43b4468
commit
b2b5b97468
1 changed files with 1 additions and 1 deletions
|
@ -108,7 +108,7 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
webapps = mkOption {
|
webapps = mkOption {
|
||||||
type = types.listOf types.package;
|
type = types.listOf types.path;
|
||||||
default = [ tomcat.webapps ];
|
default = [ tomcat.webapps ];
|
||||||
defaultText = "[ pkgs.tomcat85.webapps ]";
|
defaultText = "[ pkgs.tomcat85.webapps ]";
|
||||||
description = "List containing WAR files or directories with WAR files which are web applications to be deployed on Tomcat";
|
description = "List containing WAR files or directories with WAR files which are web applications to be deployed on Tomcat";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue