Skip to content

Commit

Permalink
nixos/portunus: fix portunus not only listening on localhost
Browse files Browse the repository at this point in the history
Closes #221678
  • Loading branch information
SuperSandro2000 committed Mar 19, 2023
1 parent 16d20e5 commit dc5ffba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nixos/modules/services/misc/portunus.nix
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ in
PORTUNUS_SERVER_BINARY = "${cfg.package}/bin/portunus-server";
PORTUNUS_SERVER_GROUP = cfg.group;
PORTUNUS_SERVER_USER = cfg.user;
PORTUNUS_SERVER_HTTP_LISTEN = "[::]:${toString cfg.port}";
PORTUNUS_SERVER_HTTP_LISTEN = "127.0.0.1:${toString cfg.port}";
PORTUNUS_SERVER_STATE_DIR = cfg.stateDir;
PORTUNUS_SLAPD_BINARY = "${cfg.ldap.package}/libexec/slapd";
PORTUNUS_SLAPD_GROUP = cfg.ldap.group;
Expand Down

0 comments on commit dc5ffba

Please sign in to comment.