infrastructure/hosts/hydrogen/services/nginx/default.nix

13 lines
236 B
Nix

{ ... }: {
services.nginx = {
enable = true;
recommendedTlsSettings = true;
recommendedOptimisation = true;
recommendedGzipSettings = true;
recommendedProxySettings = true;
};
imports = [ ./laurent ./n7 ];
}