summaryrefslogtreecommitdiff
path: root/flora
diff options
context:
space:
mode:
authorstuebinm2022-04-12 23:52:17 +0200
committerstuebinm2022-04-12 23:52:17 +0200
commit981a508328722e861df8bf0a41546a34e58ddf55 (patch)
tree2a5158e61fca4c95d5434b93bb5e59da7bf36fe2 /flora
parentb6397c58b8ae7bed2bb170830a49df14918690a3 (diff)
pleroma: fix networking / dns of container
how did this ever work at all??
Diffstat (limited to 'flora')
-rw-r--r--flora/services/pleroma.nix9
1 files changed, 9 insertions, 0 deletions
diff --git a/flora/services/pleroma.nix b/flora/services/pleroma.nix
index e0f60ed..21e4228 100644
--- a/flora/services/pleroma.nix
+++ b/flora/services/pleroma.nix
@@ -132,6 +132,15 @@ in
};
networking.firewall.allowedTCPPorts = [ 4000 10022 ];
+
+ services.coredns = {
+ enable = true;
+ config = ''
+ .:53 {
+ forward . 1.1.1.1
+ }
+ '';
+ };
};
};