murmur: adds hint about teeworlds server

This commit is contained in:
eyjhb 2024-11-20 19:19:27 +01:00
parent 7313bb8344
commit 791012f209
No known key found for this signature in database
GPG key ID: 609F508E3239F920
2 changed files with 21 additions and 2 deletions

View file

@ -1,4 +1,4 @@
{ config, pkgs, ... }: { config, lib, pkgs, ... }:
let let
urlpath = "/members"; urlpath = "/members";
@ -24,4 +24,21 @@ in {
proxyPass = "http://localhost:${builtins.toString port}"; proxyPass = "http://localhost:${builtins.toString port}";
}; };
}; };
mine.shared.meta.website-members = {
name = "Members Website";
description = "This website you are looking at right now, which is our members website.";
url = "https://${config.mine.shared.settings.domain}${urlpath}";
package = {
name = "members-website";
version = "v0.0.1";
meta = with lib; {
description = "Members website for ${mine.shared.settings.domain}";
license = licenses.free;
homepage = "https://git.fricloud.dk/fricloud/server-configs/src/branch/main/machines/gerd/services/member-website/app.py";
platforms = platforms.all;
};
};
};
} }

View file

@ -14,7 +14,9 @@ in {
environmentFile = config.age.secrets.murmur-env.path; environmentFile = config.age.secrets.murmur-env.path;
password = "$MURMUR_PASSWORD"; password = "$MURMUR_PASSWORD";
welcometext = "Welcome to Friclouds Mumble server!"; welcometext = ''Welcome to ${config.mine.shared.settings.brand}s Mumble server!
Feel free to join our Teeworlds server while waiting. Credentials can be found on the members website here ${config.mine.shared.meta.website-members.url}.
'';
bandwidth = 130000; bandwidth = 130000;
}; };