24 lines
481 B
Nix
24 lines
481 B
Nix
{ secret, ... }:
|
|
|
|
{
|
|
services.libreddit = {
|
|
enable = true;
|
|
|
|
address = "127.0.0.1";
|
|
port = 8002;
|
|
};
|
|
|
|
services.nginx.virtualHosts."${secret.nginx.hostnames.libreddit}" = {
|
|
listenAddresses = [ "100.108.165.26" "[fd7a:115c:a1e0:ab12:4843:cd96:626c:a51a]" ];
|
|
quic = true;
|
|
http3 = true;
|
|
|
|
onlySSL = true;
|
|
useACMEHost = "daniel.sx";
|
|
|
|
locations."/" = {
|
|
recommendedProxySettings = true;
|
|
proxyPass = "http://127.0.0.1:8002";
|
|
};
|
|
};
|
|
}
|