description=lib.mdDoc"Parameters to pass to the Java Virtual Machine which spawns the Catalina servlet container";
};
sharedLibs=mkOption{
type=types.listOftypes.str;
sharedLibs=lib.mkOption{
type=lib.types.listOflib.types.str;
default=[];
description=lib.mdDoc"List containing JAR files or directories with JAR files which are libraries shared by the web applications";
};
serverXml=mkOption{
type=types.lines;
serverXml=lib.mkOption{
type=lib.types.lines;
default="";
description=lib.mdDoc''
Verbatim server.xml configuration.
@@ -118,33 +106,33 @@ in
'';
};
commonLibs=mkOption{
type=types.listOftypes.str;
commonLibs=lib.mkOption{
type=lib.types.listOflib.types.str;
default=[];
description=lib.mdDoc"List containing JAR files or directories with JAR files which are libraries shared by the web applications and the servlet container";