
- set worker_processes / worker_cpu_affinity to auto, enable pcre_jit - enable ktls - set a default virtualHost for a 404 and use it for reuseport - set enableACME, forceSSL by default, disable for localhost - set robots header and file
10 lines
161 B
Nix
10 lines
161 B
Nix
{ inputs, ... }:
|
|
{
|
|
imports = [
|
|
./gandi.nix
|
|
inputs.self.nixosModules.monitoring
|
|
inputs.self.nixosModules.nginx
|
|
];
|
|
|
|
networking.useDHCP = true;
|
|
}
|