Unverified Commit 8ea8ad0a authored by Adam C. Stephens's avatar Adam C. Stephens Committed by GitHub
Browse files

vikunja: add address option (#481406)

parents 4bc1a069 b7786d98
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -45,6 +45,11 @@ in
      type = types.str;
      description = "The Hostname under which the frontend is running.";
    };
    address = mkOption {
      type = types.str;
      default = "";
      description = "The IP address to bind to.";
    };
    port = mkOption {
      type = types.port;
      default = 3456;
@@ -105,7 +110,7 @@ in
          ;
      };
      service = {
        interface = ":${toString cfg.port}";
        interface = "${cfg.address}:${toString cfg.port}";
        frontendurl = "${cfg.frontendScheme}://${cfg.frontendHostname}/";
      };
      files = {