btsync: Default to no login/password for the Web UI

Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
Austin Seipp 2014-05-02 00:41:47 -05:00
parent f21d619558
commit b553d11616
1 changed files with 2 additions and 0 deletions

View File

@ -164,6 +164,7 @@ in
httpLogin = mkOption { httpLogin = mkOption {
type = types.str; type = types.str;
example = "allyourbase"; example = "allyourbase";
default = "";
description = '' description = ''
HTTP web login username. HTTP web login username.
''; '';
@ -172,6 +173,7 @@ in
httpPass = mkOption { httpPass = mkOption {
type = types.str; type = types.str;
example = "arebelongtous"; example = "arebelongtous";
default = "";
description = '' description = ''
HTTP web login password. HTTP web login password.
''; '';