re-add bridges, wip docs

This commit is contained in:
Henry Hiles 2025-07-25 16:22:10 -04:00
commit 5aef169d60
No known key found for this signature in database
6 changed files with 232 additions and 153 deletions

View file

@ -1,19 +1,12 @@
{
pkgs,
lib,
...
}: {
{pkgs, ...}: {
networking.firewall.allowedTCPPorts = [443];
services = {
nginx.enable = lib.mkForce false;
caddy = {
enable = true;
email = "hen" + "ry@he" + "nryhi" + "les.c" + "om";
services.caddy = {
enable = true;
email = "hen" + "ry@he" + "nryhi" + "les.c" + "om";
package = pkgs.caddy.withPlugins {
plugins = ["github.com/ggicci/caddy-jwt@v1.1.0"];
hash = "sha256-sdhX/dAQ7lIxBo/ZW6XYX8SRuacLO9HobtIVKD/cw0o=";
};
package = pkgs.caddy.withPlugins {
plugins = ["github.com/ggicci/caddy-jwt@v1.1.0"];
hash = "sha256-sdhX/dAQ7lIxBo/ZW6XYX8SRuacLO9HobtIVKD/cw0o=";
};
};
}