about summary refs log tree commit diff
path: root/ops/nixos/www/base.nix
blob: 4b956cd95ef1a35c51e394932d6b912d70267f6c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{ config, pkgs, ... }:

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

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

    # NixOS 20.03 broke nginx and I can't be bothered to debug it
    # anymore, all solution attempts have failed, so here's a
    # brute-force fix.
    #
    # TODO(tazjin): Find a link to the upstream issue and see if
    # they've sorted it after ~20.09
    systemd.services.fix-nginx = {
      script = "${pkgs.coreutils}/bin/chown -f -R nginx: /var/spool/nginx /var/cache/nginx";

      serviceConfig = {
        User = "root";
        Type = "oneshot";
      };
    };

    systemd.timers.fix-nginx = {
      wantedBy = [ "multi-user.target" ];
      timerConfig = {
        OnCalendar = "minutely";
      };
    };
  };
}