diff options
Diffstat (limited to 'host/Rory-portable/nginx.nix')
-rw-r--r-- | host/Rory-portable/nginx.nix | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/host/Rory-portable/nginx.nix b/host/Rory-portable/nginx.nix index fc2adca..31ec0ea 100644 --- a/host/Rory-portable/nginx.nix +++ b/host/Rory-portable/nginx.nix @@ -1,4 +1,9 @@ -{ config, pkgs, lib, ... }: +{ + config, + pkgs, + lib, + ... +}: { services = { @@ -14,26 +19,24 @@ #defaultMimeTypes = ../../../../modules/packages/nginx/mime.types; appendConfig = '' worker_processes 16; - ''; - eventsConfig = '' + ''; + eventsConfig = '' #use kqueue; worker_connections 512; - ''; + ''; appendHttpConfig = '' #sendfile on; disable_symlinks off; ''; - additionalModules = with pkgs.nginxModules; [ - moreheaders - ]; + additionalModules = with pkgs.nginxModules; [ moreheaders ]; virtualHosts = { "discord.localhost" = import ./nginx/discord.localhost.nix { inherit pkgs; }; - + }; }; }; systemd.services.nginx.serviceConfig = { - LimitNOFILE=5000000; + LimitNOFILE = 5000000; }; } |