12 lines
218 B
Nix
12 lines
218 B
Nix
{...}: {
|
|
services.nginx = {
|
|
recommendedProxySettings = true;
|
|
recommendedTlsSettings = true;
|
|
enable = true;
|
|
};
|
|
|
|
security.acme = {
|
|
acceptTerms = true;
|
|
defaults.email = "stefan@tague.at";
|
|
};
|
|
}
|