infra/hosts/nachtigall/apps/nginx.nix

29 lines
528 B
Nix
Raw Normal View History

2023-10-28 13:31:44 +00:00
{
config,
lib,
pkgs,
self,
...
}: let
acmeEmailAddress = "admins@pub.solar";
webserverGroup = "hakkonaut";
in {
services.nginx = {
enable = true;
group = webserverGroup;
enableReload = true;
2023-10-28 19:12:33 +00:00
proxyCachePath.cache = {
enable = true;
};
2023-10-28 13:31:44 +00:00
};
# Nginx user needs access to mastodon unix sockets
users.users.nginx.extraGroups = [ "mastodon" ];
2023-10-28 13:31:44 +00:00
security.acme = {
acceptTerms = true;
2023-10-28 14:25:48 +00:00
defaults.email = acmeEmailAddress;
2023-10-28 13:31:44 +00:00
};
networking.firewall.allowedTCPPorts = [80 443];
}