nixos/graphite: listen on localhost by default

This commit is contained in:
Jaka Hudoklin 2013-10-11 11:44:26 +02:00
parent 29b99ed9fa
commit 677ecf4868

View File

@ -34,7 +34,14 @@ in {
carbon = {
config = mkOption {
description = "Content of carbon configuration file";
default = "";
default = ''
[cache]
# Listen on localhost by default for security reasons
UDP_RECEIVER_INTERFACE = 127.0.0.1
PICKLE_RECEIVER_INTERFACE = 127.0.0.1
LINE_RECEIVER_INTERFACE = 127.0.0.1
CACHE_QUERY_INTERFACE = 127.0.0.1
'';
type = types.uniq types.string;
};