Merge pull request #21505 from tg-x/mpd-listen

mpd: listen on 127.0.0.1 by default
This commit is contained in:
Jörg Thalheim 2017-01-01 16:06:17 +01:00 committed by GitHub
commit 05f2f8e1fd

View File

@ -83,11 +83,11 @@ in {
listenAddress = mkOption { listenAddress = mkOption {
type = types.str; type = types.str;
default = "any"; default = "127.0.0.1";
example = "any";
description = '' description = ''
This setting sets the address for the daemon to listen on. Careful attention The address for the daemon to listen on.
should be paid if this is assigned to anything other then the default, any. Use <literal>any</literal> to listen on all addresses.
This setting can deny access to control of the daemon.
''; '';
}; };