20 lines
406 B
Nix
20 lines
406 B
Nix
|
{ config, values, ... }:
|
||
|
{
|
||
|
services.nginx = {
|
||
|
enable = true;
|
||
|
enableReload = true;
|
||
|
|
||
|
recommendedProxySettings = true;
|
||
|
recommendedTlsSettings = true;
|
||
|
recommendedGzipSettings = true;
|
||
|
recommendedOptimisation = true;
|
||
|
};
|
||
|
|
||
|
networking.firewall.allowedTCPPorts = [ 80 443 ];
|
||
|
|
||
|
/* security.acme = { */
|
||
|
/* acceptTerms = true; */
|
||
|
/* email = "felix@albrigtsen.it"; */
|
||
|
/* }; */
|
||
|
}
|