19 lines
358 B
Nix
19 lines
358 B
Nix
{
|
|
security.acme = {
|
|
acceptTerms = true;
|
|
defaults.email = "andrea.ciceri@autistici.org";
|
|
};
|
|
|
|
networking.firewall.allowedTCPPorts = [
|
|
80
|
|
443
|
|
];
|
|
|
|
services.nginx = {
|
|
enable = true;
|
|
recommendedGzipSettings = true;
|
|
recommendedOptimisation = true;
|
|
recommendedProxySettings = true;
|
|
recommendedTlsSettings = true;
|
|
};
|
|
}
|