11 lines
139 B
Nix
11 lines
139 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
services.nginx = {
|
|
logError = "/dev/null";
|
|
appendConfig = ''
|
|
access_log off;
|
|
'';
|
|
};
|
|
}
|