summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorKJ Ørbekk <kj@orbekk.com>2017-05-14 09:40:30 -0400
committerKJ Ørbekk <kj@orbekk.com>2017-05-14 09:40:30 -0400
commitffb00cd62672c19e875820049b86eb362e6d0775 (patch)
treeb43807493337c0ab58a2f09cc7e401d0b46ae97a /config
parent48e728d8bfccc42efd23fa6fe9df420b8f7fc028 (diff)
Add matrix configuration.
Diffstat (limited to 'config')
-rw-r--r--config/matrix.nix37
1 files changed, 37 insertions, 0 deletions
diff --git a/config/matrix.nix b/config/matrix.nix
new file mode 100644
index 0000000..6a57e76
--- /dev/null
+++ b/config/matrix.nix
@@ -0,0 +1,37 @@
+{ config, lib, pkgs, ... }:
+let
+ matrixPort = (import ../data/aliases.nix).services.matrix.port;
+ matrixFederationPort = (import ../data/aliases.nix).services.matrixFederation.port;
+in
+{
+ networking.firewall.allowedTCPPorts = [ matrixPort matrixFederationPort ];
+
+ services.matrix-synapse = {
+ enable = true;
+ server_name = "orbekk.com";
+ # registration_shared_secret = "disable_after_registration";
+ listeners = [
+ {
+ port = matrixPort;
+ bind_address = "";
+ type = "http";
+ tls = false;
+ x_forwarded = true;
+ resources = [
+ { names = ["client" "webclient"]; compress = true; }
+ # { names = ["federation"]; compress = false; }
+ ];
+ }
+ {
+ port = matrixFederationPort;
+ bind_address = "";
+ type = "http";
+ tls = true;
+ x_forwarded = false;
+ resources = [
+ { names = ["federation"]; compress = false; }
+ ];
+ }
+ ];
+ };
+}