about summary refs log tree commit diff
path: root/ops/nixos/www/base.nix
blob: a15db6bb8a322cf22fa3492926c572cd17441ef0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ config, ... }:

{
  config = {
    services.nginx = {
      enable = true;
      enableReload = true;

      recommendedTlsSettings = true;
      recommendedGzipSettings = true;
      recommendedProxySettings = true;
    };
  };
}