diff options
author | EuAndreh <eu@euandre.org> | 2020-08-14 16:44:50 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2020-08-14 16:44:50 -0300 |
commit | 297edaae8e8ca2926bfd45f71ff8ce52e2d9a72d (patch) | |
tree | 35065a3030246b489e08a7cbd26d2e794f1bb68b | |
parent | Export borg key under secrets/ (diff) | |
download | server-297edaae8e8ca2926bfd45f71ff8ce52e2d9a72d.tar.gz server-297edaae8e8ca2926bfd45f71ff8ce52e2d9a72d.tar.xz |
Set "prosody" as the group for generated certificates
-rw-r--r-- | vps-configuration.env.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/vps-configuration.env.nix b/vps-configuration.env.nix index c557e95..e330d2f 100644 --- a/vps-configuration.env.nix +++ b/vps-configuration.env.nix @@ -66,6 +66,7 @@ in { webroot = "/var/www/${envsubstConfiguration.prosodyTLD}"; email = envsubstConfiguration.letsencryptEmail; user = "prosody"; + group = "prosody"; extraDomains = { "${envsubstConfiguration.prosodyMUCTLD}" = null; "${envsubstConfiguration.prosodyHTTPUploadTLD}" = null; @@ -133,7 +134,7 @@ in { }; prosody = { - enable = false; + enable = true; admins = [ envsubstConfiguration.prosodyAdminUser ]; allowRegistration = true; ssl = { |