about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSatoshi Shishiku <satoshi.shishiku@tuta.io>2018-04-26 09:12:36 +0000
committerFranz Pletz <fpletz@fnordicwalking.de>2018-12-17 01:01:41 +0100
commit5a93f6149abb404e053f3759e64e93f20de312da (patch)
tree7c16a8e11bbf4fabcf8ec4260b6a785d18b29b75
parent5b9aa055225c0e0a169f5ebf3c96b71b89c4961e (diff)
downloadnixlib-5a93f6149abb404e053f3759e64e93f20de312da.tar
nixlib-5a93f6149abb404e053f3759e64e93f20de312da.tar.gz
nixlib-5a93f6149abb404e053f3759e64e93f20de312da.tar.bz2
nixlib-5a93f6149abb404e053f3759e64e93f20de312da.tar.lz
nixlib-5a93f6149abb404e053f3759e64e93f20de312da.tar.xz
nixlib-5a93f6149abb404e053f3759e64e93f20de312da.tar.zst
nixlib-5a93f6149abb404e053f3759e64e93f20de312da.zip
prosody service: set cafile
Fix s2s_secure_auth.
-rw-r--r--nixos/modules/services/networking/prosody.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/nixos/modules/services/networking/prosody.nix b/nixos/modules/services/networking/prosody.nix
index a37ef98caec6..25b7d6dbeba2 100644
--- a/nixos/modules/services/networking/prosody.nix
+++ b/nixos/modules/services/networking/prosody.nix
@@ -228,6 +228,7 @@ let
 
   createSSLOptsStr = o: ''
     ssl = {
+      cafile = "/etc/ssl/certs/ca-bundle.crt";
       key = "${o.key}";
       certificate = "${o.cert}";
       ${concatStringsSep "\n" (mapAttrsToList (name: value: "${name} = ${toLua value};") o.extraOptions)}