Lock down SSH on eidola
This commit is contained in:
parent
7c86b314b1
commit
c54c259653
|
@ -54,6 +54,13 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
settings.PasswordAuthentication = false;
|
settings.PasswordAuthentication = false;
|
||||||
settings.KbdInteractiveAuthentication = false;
|
settings.KbdInteractiveAuthentication = false;
|
||||||
|
|
||||||
|
listenAddresses = [
|
||||||
|
{
|
||||||
|
addr = "10.13.1.1";
|
||||||
|
port = 22;
|
||||||
|
}
|
||||||
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
# My modules
|
# My modules
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
deployment = {
|
deployment = {
|
||||||
host = "192.168.1.159";
|
host = "10.13.1.1";
|
||||||
user = "root";
|
user = "root";
|
||||||
port = 22;
|
port = 22;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue