blob: eb5edbaf117e28826f9ee8c7cb680ae7b03caa4b (
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
35
36
37
38
39
40
41
|
{
config,
pkgsUnstable,
lib,
...
}: let
domain = "redlib.vhack.eu";
cfg = config.vhack.redlib;
in {
options.vhack.redlib = {
enable = lib.mkEnableOption ''
the redlib reddit frontend
'';
};
config = lib.mkIf cfg.enable {
services.redlib = {
enable = true;
package = pkgsUnstable.redlib;
port = 8080;
address = "127.0.0.1";
openFirewall = false;
};
services.nginx = {
enable = true;
virtualHosts.${domain} = {
locations."/".proxyPass = "http://127.0.0.1:${toString config.services.redlib.port}";
enableACME = true;
forceSSL = true;
};
};
# TODO(@bpeetz): Remove this at some point. <2025-02-04>
vhack.nginx.redirects = {
"libreddit.vhack.eu" = "${domain}";
};
};
}
|