add click, clicky-bunty frontend

This commit is contained in:
oxapentane - 2022-07-13 19:50:19 +02:00
parent 32ee1e709e
commit cfcadbc494
Signed by: oxapentane
GPG Key ID: 91FA5E5BF9AA901C
2 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,13 @@
{ pkgs, config, ... }: {
services.nginx = {
enable = true;
virtualHosts."click.${config.dump-dvb.domain}" = {
enableACME = true;
forceSSL = true;
locations."/" = {
root = "${pkgs.click}/web/";
index = "index.html";
};
};
};
}

View File

@ -1,5 +1,6 @@
{
imports = [
./click.nix
./clicky-bunty.nix
./data-accumulator.nix
./documentation.nix