From f840b588fba0fb5cb55069212c77d181add14e99 Mon Sep 17 00:00:00 2001 From: niten Date: Wed, 26 Jul 2023 09:25:12 -0700 Subject: [PATCH] Only need one port --- mastodon-container.nix | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/mastodon-container.nix b/mastodon-container.nix index 698e41a..b84ab97 100644 --- a/mastodon-container.nix +++ b/mastodon-container.nix @@ -116,17 +116,10 @@ in { description = "Port at which to store server data."; }; - ports = { - web = mkOption { - type = port; - description = "Port at which to serve Mastodon web requests."; - default = 3000; - }; - streaming = mkOption { - type = port; - description = "Port at which to serve Mastodon streaming requests."; - default = 4000; - }; + port = mkOption { + type = port; + description = "Port at which to serve Mastodon web requests."; + default = 3000; }; uids = {