NixOS/hosts/luna/modules/services/nginx.nix
Price Hiller fd24ea629f
feat(luna): working gitlab config
🚀🚀🚀🚀🚀🚀🚀🚀
2023-10-28 03:05:37 -05:00

15 lines
311 B
Nix

{ config, ... }:
{
services.nginx = {
enable = true;
recommendedProxySettings = true;
recommendedOptimisation = true;
recommendedGzipSettings = true;
recommendedTlsSettings = true;
};
security.acme = {
acceptTerms = true;
defaults.email = "price@orion-technologies.io";
};
}