mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-24 00:29:43 -04:00
Merge branch 'main'
This commit is contained in:
commit
ab09b54ee9
4 changed files with 20 additions and 1 deletions
|
|
@ -28,6 +28,17 @@ in
|
|||
};
|
||||
};
|
||||
|
||||
services.sslh = {
|
||||
enable = true;
|
||||
settings = {
|
||||
listen = [{ host = "0.0.0.0"; port = 443; }];
|
||||
protocols = [
|
||||
{ name = "ssh"; host = "127.0.0.1"; port = 22; probe = "builtin"; }
|
||||
{ name = "tls"; host = "127.0.0.1"; port = 4443; probe = "builtin"; }
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
services.nginx = {
|
||||
enable = true;
|
||||
recommendedTlsSettings = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue