teutat3s
79679720ff
All checks were successful
Flake checks / Check (pull_request) Successful in 7m11s
48 lines
892 B
Nix
48 lines
892 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
self,
|
|
...
|
|
}:
|
|
let
|
|
acmeEmailAddress = config.pub-solar-os.adminEmail;
|
|
webserverGroup = "hakkonaut";
|
|
in
|
|
{
|
|
users.users.nginx.extraGroups = [ webserverGroup ];
|
|
|
|
services.nginx = {
|
|
enable = true;
|
|
enableReload = true;
|
|
proxyCachePath.cache = {
|
|
enable = true;
|
|
};
|
|
recommendedGzipSettings = true;
|
|
recommendedOptimisation = true;
|
|
recommendedProxySettings = true;
|
|
recommendedTlsSettings = true;
|
|
appendHttpConfig = ''
|
|
# https://my.f5.com/manage/s/article/K51798430
|
|
proxy_headers_hash_bucket_size 128;
|
|
'';
|
|
appendConfig = ''
|
|
# Number of CPU cores
|
|
worker_processes 8;
|
|
'';
|
|
eventsConfig = ''
|
|
worker_connections 1024;
|
|
'';
|
|
};
|
|
|
|
security.acme = {
|
|
acceptTerms = true;
|
|
defaults.email = acmeEmailAddress;
|
|
};
|
|
|
|
networking.firewall.allowedTCPPorts = [
|
|
80
|
|
443
|
|
];
|
|
}
|