feat(MOMO): add yarr

This commit is contained in:
Jacob Bachmann 2025-10-11 17:09:08 +02:00
parent ec79c1b3e3
commit 18823ce0bf
Signed by: bchmnn
GPG key ID: 732A612DAD28067D
4 changed files with 31 additions and 0 deletions

View file

@ -16,6 +16,13 @@
proxyPass = "http://127.0.0.1:8005"; proxyPass = "http://127.0.0.1:8005";
}; };
}; };
virtualHosts."yarr.dryb.org" = {
addSSL = true;
enableACME = true;
locations."/" = {
proxyPass = "http://127.0.0.1:8007";
};
};
}; };
networking.firewall = { networking.firewall = {

View file

@ -0,0 +1,14 @@
{ config, ... }: {
age.secrets.environments-yarr = {
file = ../../../secrets/environments/yarr.age;
};
services.yarr = {
enable = true;
port = 8007;
address = "127.0.0.1";
baseUrl = "https://yarr.dryb.org";
authFilePath = config.age.secrets.environments-yarr.path;
};
}

View file

@ -0,0 +1,9 @@
age-encryption.org/v1
-> ssh-ed25519 lfMVeg g6zt2+iuzFNLhz1MUN45Fm/PQyTcDNGTNTFV2/gZCSo
rsH1EqfGlXzXxKHK5qeaZDo9tQ2LG7aZ5tc4lM6OQwo
-> ssh-ed25519 ueRyzQ uEKYQgWA2BUAWaZ0UU8QBj8sgeRJZow9FARAI5jcng4
z2wLWrY/Fz2lZEOjsHohpmjhcixY6UN1EyYl4QkJu80
-> ssh-ed25519 IYnDOQ ajiSs82r6uhtD1j5UAPIwAHSV3+U7trR3imTI1zoKGs
IlFf/4TMT3SZeyuPyI66g/jRFXhuNbiRpoIUuFjya5k
--- GGkZetyyd0xSN2v4oDLV+KAFC8zYPCX5QvtifMP08uM
Õmªë ïþ,LYã"þÄp%lǬ°«9º_ þ[âý-ñÍᬙ÷®bÜê¶O$ !¸Gy5œ5[7bøöhLlŠoËúF

View file

@ -17,6 +17,7 @@ in
{ {
"environments/acme.age".publicKeys = users ++ servers; "environments/acme.age".publicKeys = users ++ servers;
"environments/vaultwarden.age".publicKeys = users ++ servers; "environments/vaultwarden.age".publicKeys = users ++ servers;
"environments/yarr.age".publicKeys = users ++ servers;
"passwords/anki/admin.age".publicKeys = users ++ servers; "passwords/anki/admin.age".publicKeys = users ++ servers;
"passwords/ddclient/cloudflare.age".publicKeys = users ++ servers; "passwords/ddclient/cloudflare.age".publicKeys = users ++ servers;
"passwords/gitea/db.age".publicKeys = users ++ servers; "passwords/gitea/db.age".publicKeys = users ++ servers;