Merge pull request #38885 from lopsided98/grafana-unix-socket

grafana: support socket protocol
This commit is contained in:
Jörg Thalheim 2018-04-13 11:14:02 +01:00 committed by GitHub
commit 0cb8413b02
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -50,7 +50,7 @@ in {
protocol = mkOption {
description = "Which protocol to listen.";
default = "http";
type = types.enum ["http" "https"];
type = types.enum ["http" "https" "socket"];
};
addr = mkOption {