nixos/apache-httpd: use more accurate int types

This commit is contained in:
h7x4
2025-09-22 15:28:09 +02:00
parent 32a008369e
commit 27a6fc2af5

View File

@@ -704,14 +704,14 @@ in
};
maxClients = mkOption {
type = types.int;
type = types.ints.positive;
default = 150;
example = 8;
description = "Maximum number of httpd processes (prefork)";
};
maxRequestsPerChild = mkOption {
type = types.int;
type = types.ints.unsigned;
default = 0;
example = 500;
description = ''