fix(prosody): open required ports

This commit is contained in:
Ivan R. 2024-02-23 10:52:11 +05:00
parent b9ab3d6c7b
commit aab671a421
No known key found for this signature in database
GPG key ID: 56C7BAAE859B302C
2 changed files with 10 additions and 2 deletions

View file

@ -19,8 +19,13 @@
587 # smtp submission
143 # imap
993 # imap
5280 # prosody http
5281 # prosody https
# Prosody
5000 # File transfer proxy
5222 # Client connections
5269 # Server-to-server connections
5281 # HTTPS
6881 # torrents
16001 # yggdrasil tcp
16002 # yggdrasil tls

View file

@ -6,6 +6,9 @@
withExtraLibs = [ pkgs.luajitPackages.luadbi ];
};
httpPorts = [ 5280 ];
httpsPorts = [ 5281 ];
virtualHosts."xmpp.comfycamp.space" = {
enabled = true;
domain = "xmpp.comfycamp.space";