depot/ops/nixos/lib/quotes.bfob.gg.nix

100 lines
2.5 KiB
Nix
Raw Normal View History

{ config, options, depot, lib, ... }:
2021-01-19 23:41:47 +00:00
let
inherit (depot.ops) secrets;
pkg = depot.web.quotes;
sock = "/run/quotesdb/gunicorn.sock";
in
{
options = with lib; {
my.quotesdb.listen = lib.mkOption {
type = with types; listOf str;
default = [ "127.0.0.1" "[::1]" ];
};
};
config = let
nginxListen = (map (addr: {
inherit addr;
port = 80;
ssl = false;
}) config.my.quotesdb.listen) ++ (map (addr: {
inherit addr;
port = 443;
ssl = true;
}) config.my.quotesdb.listen);
in {
my.vault.acmeCertificates.bfob = {
hostnames = [ "bfob.gg" "*.bfob.gg" ];
nginxVirtualHosts = [ "qdb.bfob.gg" "quotes.bfob.gg" "dev-quotes.bfob.gg" ];
2021-01-19 23:41:47 +00:00
};
services.nginx = {
enable = lib.mkDefault true;
virtualHosts."qdb.bfob.gg" = {
listen = nginxListen;
2021-01-19 23:41:47 +00:00
globalRedirect = "quotes.bfob.gg";
forceSSL = true;
};
virtualHosts."quotes.bfob.gg" = {
listen = nginxListen;
2021-01-19 23:41:47 +00:00
forceSSL = true;
locations."/static" = {
root = "${pkg}/share";
};
locations."/" = {
proxyPass = "http://unix:${sock}";
};
};
virtualHosts."dev-quotes.bfob.gg" = {
listen = nginxListen;
forceSSL = true;
locations."/" = {
proxyPass = "http://127.0.0.1:8000";
};
};
2021-01-19 23:41:47 +00:00
};
services.postgresql = {
enable = lib.mkDefault true;
ensureDatabases = lib.mkAfter [ "quotesdb" ];
ensureUsers = lib.mkAfter [{
name = "quotesdb";
}];
};
users.users.quotesdb = {
isSystemUser = true;
group = "nginx";
};
users.groups.quotesdb = {};
2021-01-19 23:41:47 +00:00
systemd.services.quotesdb = {
wantedBy = [ "multi-user.target" ];
after = [ "network.target" ];
2021-01-19 23:43:43 +00:00
environment.DJANGO_SETTINGS_MODULE = "quotes.quotesapp.prod_settings";
preStart = ''
${pkg}/bin/quotes-manage migrate --no-input
'';
2021-01-19 23:41:47 +00:00
serviceConfig = {
2022-04-09 20:51:24 +00:00
EnvironmentFile = config.my.vault.secrets.quotesdb-environment.path;
2021-01-19 23:41:47 +00:00
RuntimeDirectory = "quotesdb";
ExecStart = "${pkg}/bin/quotes --workers 3 --bind unix:${sock}";
User = "quotesdb";
2021-01-19 23:41:47 +00:00
Group = "nginx";
UMask = "0007";
};
};
2022-04-09 20:51:24 +00:00
my.vault.secrets.quotesdb-environment = {
reloadOrRestartUnits = ["quotesdb.service"];
group = "root";
template = ''
{{ with secret "kv/apps/quotesdb" }}
{{ .Data.data.environment }}
{{ end }}
'';
};
2021-01-19 23:41:47 +00:00
};
}