blob: fef10700224b3fb57bff2980fc4b8c6e6fecde34 (
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
|
{
config,
lib,
...
}:
with lib; let
cfg = config.nixfiles.modules.rss-bridge;
in {
options.nixfiles.modules.rss-bridge = {
enable = mkEnableOption "RSS-Bridge";
domain = mkOption {
description = "Domain name sans protocol scheme.";
type = with types; str;
default = "rss-bridge.${config.networking.domain}";
};
};
config = mkIf cfg.enable {
nixfiles.modules.nginx = {
enable = true;
virtualHosts.${cfg.domain}.extraConfig = nginxInternalOnly;
};
services.rss-bridge = {
enable = true;
virtualHost = cfg.domain;
whitelist = ["*"];
};
};
}
|