flake/hosts/vultr/sin0/services/redlib.nix

27 lines
687 B
Nix
Raw Normal View History

2024-10-19 05:00:06 +00:00
{ lib, ports, ... }:
2024-09-06 12:19:44 +00:00
let
2024-10-19 05:00:06 +00:00
port = ports.redlib;
2024-09-06 12:19:44 +00:00
in
2024-08-27 09:08:53 +00:00
{
services.redlib = {
2024-09-06 12:19:44 +00:00
inherit port;
2024-08-27 09:08:53 +00:00
enable = true;
address = "127.0.0.1";
};
2024-08-31 02:15:09 +00:00
2024-10-05 12:13:21 +00:00
systemd.services."redlib".environment = {
# Google's indexing caused a DoS with 800k requests...
# https://developers.google.com/search/docs/crawling-indexing/block-indexing
REDLIB_ROBOTS_DISABLE_INDEXING = "on";
REDLIB_DEFAULT_USE_HLS = "on";
};
2024-08-31 02:15:09 +00:00
services.caddy.settings.apps.http.servers.srv0.routes = lib.singleton {
2024-09-20 17:38:01 +00:00
match = lib.singleton { host = [ "reddit.ny4.dev" ]; };
2024-10-05 12:13:21 +00:00
handle = lib.singleton {
handler = "reverse_proxy";
upstreams = [ { dial = "localhost:${toString port}"; } ];
};
2024-08-31 02:15:09 +00:00
};
2024-08-27 09:08:53 +00:00
}