about summary refs log tree commit diff
path: root/ops/modules/www/volgasprint.org.nix
blob: 7e5abe556127c3d79233acf317791bea5e507e8a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ depot, ... }:

{
  imports = [
    ./base.nix
  ];

  config = {
    services.nginx.virtualHosts."volgasprint.org" = {
      enableACME = true;
      forceSSL = true;
      root = "${depot.web.volgasprint}";
    };
  };
}