aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/nixos/tests/xmpp/prosody-mysql.nix
diff options
context:
space:
mode:
authorKatharina Fey <kookie@spacekookie.de>2020-05-20 01:39:43 +0200
committerKatharina Fey <kookie@spacekookie.de>2020-05-20 01:39:43 +0200
commit1849de11ec1e32e9eebb83f24d5339bea88b7ed7 (patch)
tree0aaf3cead09c2d55c67c6f6a86ad20af399797d8 /nixpkgs/nixos/tests/xmpp/prosody-mysql.nix
parent304c06d7a7ea3f5c84031d325ece8d38b8c1d829 (diff)
parent0f5ce2fac0c726036ca69a5524c59a49e2973dd4 (diff)
Merge commit '0f5ce2fac0c726036ca69a5524c59a49e2973dd4'
Diffstat (limited to 'nixpkgs/nixos/tests/xmpp/prosody-mysql.nix')
-rw-r--r--nixpkgs/nixos/tests/xmpp/prosody-mysql.nix15
1 files changed, 15 insertions, 0 deletions
diff --git a/nixpkgs/nixos/tests/xmpp/prosody-mysql.nix b/nixpkgs/nixos/tests/xmpp/prosody-mysql.nix
index 0507227021b..9a00bcabf38 100644
--- a/nixpkgs/nixos/tests/xmpp/prosody-mysql.nix
+++ b/nixpkgs/nixos/tests/xmpp/prosody-mysql.nix
@@ -6,6 +6,11 @@ import ../make-test-python.nix {
environment.systemPackages = [
(pkgs.callPackage ./xmpp-sendmessage.nix { connectTo = nodes.server.config.networking.primaryIPAddress; })
];
+ networking.extraHosts = ''
+ ${nodes.server.config.networking.primaryIPAddress} example.com
+ ${nodes.server.config.networking.primaryIPAddress} conference.example.com
+ ${nodes.server.config.networking.primaryIPAddress} uploads.example.com
+ '';
};
server = { config, pkgs, ... }: {
nixpkgs.overlays = [
@@ -18,6 +23,8 @@ import ../make-test-python.nix {
];
networking.extraHosts = ''
${config.networking.primaryIPAddress} example.com
+ ${config.networking.primaryIPAddress} conference.example.com
+ ${config.networking.primaryIPAddress} uploads.example.com
'';
networking.firewall.enable = false;
services.prosody = {
@@ -39,6 +46,14 @@ import ../make-test-python.nix {
domain = "example.com";
enabled = true;
};
+ muc = [
+ {
+ domain = "conference.example.com";
+ }
+ ];
+ uploadHttp = {
+ domain = "uploads.example.com";
+ };
};
};
mysql = { config, pkgs, ... }: {