This also removes tegola reading only from the nidus-dev-sync. Also bump to 25.11 so the system is consistent
28 lines
662 B
Nix
28 lines
662 B
Nix
{ config, lib, pkgs, ... }: {
|
|
myModules.caddy.enable = true;
|
|
myModules.frps = {
|
|
domains = [
|
|
"audiobooks.theribbles.org"
|
|
"auth.theribbles.org"
|
|
"carddav.theribbles.org"
|
|
"chores.theribbles.org"
|
|
"collabora.theribbles.org"
|
|
"dev-sync.nidus.cloud"
|
|
"dev-tegola.nidus.cloud"
|
|
"docs.theribbles.org"
|
|
"files.theribbles.org"
|
|
"home-assistant.theribbles.org"
|
|
"movies.theribbles.org"
|
|
"notes.theribbles.org"
|
|
"passwords.theribbles.org"
|
|
"pdf.theribbles.org"
|
|
"photos.theribbles.org"
|
|
"plex.theribbles.org"
|
|
"s3.theribbles.org"
|
|
"source.theribbles.org"
|
|
"todo.theribbles.org"
|
|
"tv.theribbles.org"
|
|
];
|
|
enable = true;
|
|
};
|
|
}
|