Compare commits

..

No commits in common. "f29bbe2415a16814e91ab126e8c28c0f3c716ada" and "4e09028ba4b0a3d2fa605ff333ecb9664ac754b5" have entirely different histories.

5 changed files with 0 additions and 65 deletions

View file

@ -1,22 +0,0 @@
{ config, ... }:
{
systemd.tmpfiles.rules = [
"d /var/lib/open-webui 0755 root root"
];
virtualisation.oci-containers.containers.open-webui = {
image = "ghcr.io/open-webui/open-webui:main";
ports = [
"8090:8080"
];
volumes = [ "/var/lib/open-webui:/app/backend/data" ];
};
services.caddy.virtualHosts."https://open-webui.tailc50184.ts.net".extraConfig = ''
bind tailscale/open-webui
reverse_proxy http://localhost:8090
'';
networking.firewall.trustedInterfaces = [ "podman0" ];
}

View file

@ -1,24 +0,0 @@
{
services = {
paperless = {
enable = true;
settings = {
PAPERLESS_ENABLE_HTTP_REMOTE_USER = true;
PAPERLESS_ENABLE_HTTP_REMOTE_USER_API = true;
PAPERLESS_LOGOUT_REDIRECT_URL = "https://auth.tailc50184.ts.net/logout";
PAPERLESS_OCR_USER_ARGS = {
"invalidate_digital_signatures" = true;
};
};
};
caddy.virtualHosts."paperless.tailc50184.ts.net".extraConfig = ''
bind tailscale/paperless
forward_auth localhost:9091 {
uri /api/authz/forward-auth
copy_headers Remote-User
}
reverse_proxy localhost:28981
'';
};
}

View file

@ -22,13 +22,11 @@
../../roles/syncthing.nix
./apps/dev.nix
./apps/nextcloud.nix
./apps/paperless.nix
./apps/searxng.nix
./apps/actual.nix
./apps/adguard.nix
./apps/audiobookshelf.nix
./apps/ollama.nix
./apps/open-webui.nix
];
boot.loader.grub = {
@ -141,11 +139,6 @@
reverse_proxy localhost:9091
'';
services.caddy.virtualHosts."auth.tailc50184.ts.net".extraConfig = ''
bind tailscale/auth
reverse_proxy localhost:9091
'';
services.authelia.instances.main.settings.access_control.rules = [
{
domain = "syncthing.thewordnerd.info";

View file

@ -82,10 +82,6 @@
domain = "*.thewordnerd.info";
policy = "one_factor";
}
{
domain = "*.tailc50184.ts.net";
policy = "one_factor";
}
];
};
session = {
@ -94,10 +90,6 @@
domain = "thewordnerd.info";
authelia_url = "https://auth.thewordnerd.info";
}
{
domain = "tailc50184.ts.net";
authelia_url = "https://auth.tailc50184.ts.net";
}
];
};
notifier = {

View file

@ -1,11 +1,7 @@
{
virtualisation.podman = {
enable = true;
autoPrune.enable = true;
dockerCompat = true;
dockerSocket.enable = true;
defaultNetwork.settings = {
dns_enabled = true;
};
};
}