add postgres and plausible

This commit is contained in:
2024-09-29 10:33:46 +05:30
parent 856be27a3f
commit eef2a71a66
4 changed files with 151 additions and 2 deletions

View File

@ -0,0 +1,45 @@
{
config,
lib,
...
}: {
services = {
plausible = {
enable = true;
server = {
baseUrl = "https://plausible.tux.rs";
port = 2100;
disableRegistration = true;
secretKeybaseFile = config.sops.secrets.plausible_key.path;
};
adminUser = {
activate = true;
name = "tux";
email = "0xtux@pm.me";
passwordFile = config.sops.secrets.plausible_password.path;
};
database.postgres = {
dbname = "plausible";
socket = "/run/postgresql";
};
};
nginx = {
enable = lib.mkForce true;
virtualHosts = {
"plausible.tux.rs" = {
forceSSL = true;
useACMEHost = "tux.rs";
locations = {
"/" = {
proxyPass = "http://localhost:2100";
};
};
};
};
};
};
}