eris: handle more http(s) connections
monitoring.nixos.org is getting overloaded for some reason
Martin Weinelt committed
Dec 24, 2023 at 14:06 UTC
943841c92b53e0bca54facbb53cc83c7579371a9
1 file changed
+4
delft/eris.nix
+4
@@ -73,6 +73,10 @@ in
73
sslProtocols = "TLSv1.2 TLSv1.3"; # iPXE only supports TLSv1.2
74
sslCiphers = options.services.nginx.sslCiphers.default + ":AES256-SHA256"; # iPXE needs AES256-SHA256
75
76
+ eventsConfig = ''
77
+ worker_connections 4096;
78
+ '';
79
+
80
virtualHosts."netboot.nixos.org" = {
81
enableACME = true;
82
forceSSL = true;