From 583e01832f84624019b9b16020664c4ea0a2d945 Mon Sep 17 00:00:00 2001 From: Yan Lin Date: Fri, 10 Oct 2025 01:27:04 +0200 Subject: [PATCH] remove gotify server --- config/firefox/bookmarks.nix | 4 ---- hosts/nixos/vps/containers.nix | 26 -------------------------- 2 files changed, 30 deletions(-) diff --git a/config/firefox/bookmarks.nix b/config/firefox/bookmarks.nix index 9b441d5..88c43ed 100644 --- a/config/firefox/bookmarks.nix +++ b/config/firefox/bookmarks.nix @@ -21,10 +21,6 @@ name = "Immich"; url = "https://photo.yanlincs.com/photos"; } - { - name = "Gotify"; - url = "https://notify.yanlincs.com/"; - } { name = "Productivity"; bookmarks = [ diff --git a/hosts/nixos/vps/containers.nix b/hosts/nixos/vps/containers.nix index e98486a..2671d90 100644 --- a/hosts/nixos/vps/containers.nix +++ b/hosts/nixos/vps/containers.nix @@ -62,32 +62,6 @@ in autoStart = true; }; - # Gotify notification server - gotify = { - image = "docker.io/gotify/server"; - - volumes = [ - "/var/lib/containers/config/gotify:/app/data" - ]; - - labels = { - "traefik.enable" = "true"; - "traefik.http.routers.notify.rule" = "Host(`notify.yanlincs.com`)"; - "traefik.http.routers.notify.entrypoints" = "websecure"; - "traefik.http.routers.notify.tls" = "true"; - "traefik.http.routers.notify.tls.certresolver" = "cloudflare"; - "traefik.http.routers.notify.tls.domains[0].main" = "*.yanlincs.com"; - "traefik.http.services.notify.loadbalancer.server.port" = "80"; - }; - - extraOptions = [ - "--network=podman" - "--security-opt=no-new-privileges:true" - ]; - - autoStart = true; - }; - # OC Backend Scheduler oc-scheduler = { image = "localhost/oc-scheduler:v1";