diff options
author | Ben Sima <ben@bsima.me> | 2023-10-30 16:21:06 -0400 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2023-10-30 16:21:06 -0400 |
commit | 9ff0cea44b344bfa6186e414c1d9397f897c84b7 (patch) | |
tree | 6212e35e0f52294f768e62566939acc2c39be021 /Biz | |
parent | 7597d51ed4c866f596fb690d4d53d70bc01181b4 (diff) |
Disabled broken xmpp domains
These stopped working with the Lets Encrypt integration and I don't know why.
Just got a 404 when trying to check the .well-known endpoint. Also I don't know
how to debug this. So I guess just disable and try to fix later?
Diffstat (limited to 'Biz')
-rw-r--r-- | Biz/Cloud/Comms/Xmpp.nix | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Biz/Cloud/Comms/Xmpp.nix b/Biz/Cloud/Comms/Xmpp.nix index d74a6b7..af52f3f 100644 --- a/Biz/Cloud/Comms/Xmpp.nix +++ b/Biz/Cloud/Comms/Xmpp.nix @@ -194,8 +194,9 @@ in { users.users.nginx.extraGroups = [ "prosody" ]; security.acme.certs.${rootDomain}.extraDomainNames = [ - "upload.${rootDomain}" - "conference.${rootDomain}" + # these stopped working idk why + #"upload.${rootDomain}" + #"conference.${rootDomain}" "anon.${rootDomain}" "chat.${rootDomain}" ]; |