23 lines
428 B
Nix
23 lines
428 B
Nix
{ config, secret, ... }:
|
|
|
|
{
|
|
services.libreddit = {
|
|
enable = true;
|
|
|
|
address = "127.0.0.1";
|
|
port = 8002;
|
|
};
|
|
|
|
services.nginx.virtualHosts."${secret.nginx.hostnames.libreddit}" = {
|
|
listenAddresses = [ "100.113.242.85" ];
|
|
http3 = true;
|
|
|
|
onlySSL = true;
|
|
useACMEHost = "daniel.sx";
|
|
|
|
locations."/" = {
|
|
recommendedProxySettings = true;
|
|
proxyPass = "http://127.0.0.1:8002";
|
|
};
|
|
};
|
|
}
|