Compare commits
2 Commits
7c7b53349a
...
5421eccc0b
Author | SHA1 | Date |
---|---|---|
|
5421eccc0b | |
|
a154a67ac8 |
|
@ -49,12 +49,12 @@
|
||||||
environmentFile = "/opt/keys/porkbun";
|
environmentFile = "/opt/keys/porkbun";
|
||||||
group = "nginx";
|
group = "nginx";
|
||||||
};
|
};
|
||||||
/*certs."sovr.cloud" = {
|
certs."sovr.cloud" = {
|
||||||
dnsProvider = "porkbun";
|
dnsProvider = "porkbun";
|
||||||
domain = "sovr.cloud";
|
domain = "sovr.cloud";
|
||||||
environmentFile = "/opt/keys/porkbun";
|
environmentFile = "/opt/keys/porkbun";
|
||||||
group = "nginx";
|
group = "nginx";
|
||||||
};*/
|
};
|
||||||
defaults.email = "eli@theribbles.org";
|
defaults.email = "eli@theribbles.org";
|
||||||
};
|
};
|
||||||
# Configure network proxy if necessary
|
# Configure network proxy if necessary
|
||||||
|
@ -65,7 +65,13 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
network.enable = true;
|
network.enable = true;
|
||||||
};
|
};
|
||||||
services.openssh.enable = true;
|
services.openssh = {
|
||||||
|
enable = true;
|
||||||
|
# require public key authentication for better security
|
||||||
|
settings.PasswordAuthentication = false;
|
||||||
|
settings.KbdInteractiveAuthentication = false;
|
||||||
|
settings.PermitRootLogin = "no";
|
||||||
|
};
|
||||||
services.sovr-server = {
|
services.sovr-server = {
|
||||||
enable = true;
|
enable = true;
|
||||||
sessionSecret = "secret";
|
sessionSecret = "secret";
|
||||||
|
|
Loading…
Reference in New Issue