This commit is contained in:
Bryan Ramos 2026-03-13 20:11:43 -04:00
parent 6040b4a1e6
commit 3ba1a63124

View file

@ -30,11 +30,12 @@ in
services.sslh = { services.sslh = {
enable = true; enable = true;
listenAddresses = [ "0.0.0.0" ];
port = 443;
settings = { settings = {
listen = [{ host = "0.0.0.0"; port = 443; }];
protocols = [ protocols = [
{ name = "ssh"; host = "127.0.0.1"; port = 22; probe = "builtin"; } { name = "ssh"; host = "127.0.0.1"; port = "22"; probe = "builtin"; }
{ name = "tls"; host = "127.0.0.1"; port = 4443; probe = "builtin"; } { name = "tls"; host = "127.0.0.1"; port = "4443"; probe = "builtin"; }
]; ];
}; };
}; };