aboutsummaryrefslogtreecommitdiff
path: root/modules/private/websites/nassime/production.nix
blob: a1097784c499be9c7199cd1652025ece0bc05380 (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
{ lib, pkgs, config, myconfig,  ... }:
let
  cfg = config.myServices.websites.nassime.production;
  varDir = "/var/lib/ftp/nassime";
  env = myconfig.env.websites.nassime;
in {
  options.myServices.websites.nassime.production.enable = lib.mkEnableOption "enable Nassime's website";

  config = lib.mkIf cfg.enable {
    services.webstats.sites = [ { name = "nassime.bouya.org"; } ];

    security.acme.certs."ftp".extraDomains."nassime.bouya.org" = null;

    services.websites.production.vhostConfs.nassime = {
      certName     = "nassime";
      certMainHost = "nassime.bouya.org";
      hosts        = ["nassime.bouya.org" ];
      root         = varDir;
      extraConfig  = [
        ''
        Use Stats nassime.bouya.org
        ServerAdmin ${env.server_admin}

        <Directory ${varDir}>
          DirectoryIndex index.php index.htm index.html
          Options Indexes FollowSymLinks MultiViews Includes
          AllowOverride None
          Require all granted
        </Directory>
          ''
      ];
    };
  };
}