mirror of
https://github.com/genebean/dots.git
synced 2026-03-27 01:17:42 -04:00
imap stuff
This commit is contained in:
parent
9f0baa6337
commit
5f2005a8c3
3 changed files with 20 additions and 1 deletions
|
|
@ -26,9 +26,11 @@
|
|||
22 # ssh
|
||||
25 # SMTP (unencrypted)
|
||||
80 # http to local Nginx
|
||||
143 # imap
|
||||
443 # https to local Nginx
|
||||
465 # SMTP with TLS
|
||||
587 # SMTP with STARTTLS
|
||||
993 # imaps
|
||||
8333 # Bitcoin Core
|
||||
8448 # Matrix Synapse
|
||||
9735 # LND
|
||||
|
|
@ -54,6 +56,12 @@
|
|||
"tailscale0"
|
||||
];
|
||||
};
|
||||
openssh.settings = {
|
||||
# require public key authentication for better security
|
||||
PasswordAuthentication = false;
|
||||
KbdInteractiveAuthentication = false;
|
||||
PermitRootLogin = "no";
|
||||
};
|
||||
postgresql = {
|
||||
enable = true;
|
||||
package = pkgs.postgresql_16;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue