nix-config/modules/data-hoarder/documentation.nix
Grigory Shipunov 62b9aa6cbd
Remove dead code (#10)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2022-06-27 20:59:16 +02:00

21 lines
431 B
Nix

{ pkgs, config, ... }: {
services = {
nginx = {
enable = true;
recommendedProxySettings = true;
virtualHosts = {
"docs.${config.dump-dvb.domain}" = {
enableACME = true;
forceSSL = true;
locations = {
"/" = {
root = "${pkgs.dvb-dump-docs}/bin/";
index = "index.html";
};
};
};
};
};
};
}