Websockify: End descriptions with a period.
This commit is contained in:
parent
18e8724e64
commit
969fe07be6
@ -6,7 +6,7 @@ let cfg = config.services.networking.websockify; in {
|
||||
options = {
|
||||
services.networking.websockify = {
|
||||
enable = mkOption {
|
||||
description = "Whether to enable websockify to forward websocket connections to TCP connections";
|
||||
description = "Whether to enable websockify to forward websocket connections to TCP connections.";
|
||||
|
||||
default = false;
|
||||
|
||||
@ -14,19 +14,19 @@ let cfg = config.services.networking.websockify; in {
|
||||
};
|
||||
|
||||
sslCert = mkOption {
|
||||
description = "Path to the SSL certificate";
|
||||
description = "Path to the SSL certificate.";
|
||||
type = types.path;
|
||||
};
|
||||
|
||||
sslKey = mkOption {
|
||||
description = "Path to the SSL key";
|
||||
description = "Path to the SSL key.";
|
||||
default = cfg.sslCert;
|
||||
defaultText = "config.services.networking.websockify.sslCert";
|
||||
type = types.path;
|
||||
};
|
||||
|
||||
portMap = mkOption {
|
||||
description = "Ports to map by default";
|
||||
description = "Ports to map by default.";
|
||||
default = {};
|
||||
type = types.attrsOf types.int;
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user