25 lines
496 B
Nix
25 lines
496 B
Nix
|
{
|
||
|
services.nginx = {
|
||
|
enable = true;
|
||
|
|
||
|
# enable all recommended settings
|
||
|
recommendedTlsSettings = true;
|
||
|
recommendedOptimisation = true;
|
||
|
recommendedGzipSettings = true;
|
||
|
recommendedProxySettings = true;
|
||
|
|
||
|
# set a reasonable default
|
||
|
clientMaxBodySize = "64m";
|
||
|
|
||
|
virtualHosts = {
|
||
|
"_" = {
|
||
|
addSSL = true;
|
||
|
useACMEHost = ".514fpv.io";
|
||
|
extraConfig = "return 444;";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
networking.firewall.allowedTCPPorts = [ 80 443 ];
|
||
|
}
|