Update from updated-inputs-2025-06-03-01-03
This commit is contained in:
@@ -87,3 +87,11 @@ groups:
|
||||
annotations:
|
||||
summary: "GPG {{ $labels.fingerprint }} is expiring soon"
|
||||
description: "GPG with fingerprint {{ $labels.fingerprint }} is expiring in less then six weeks"
|
||||
- alert: NadjaTopIPv4ProxyBroken
|
||||
expr: probe_success{job="blackbox_local_http6", target="blog.nadja.top"} != on (target) probe_success{job="blackbox_local_http4", target="blog.nadja.top"}
|
||||
for: 5m
|
||||
labels:
|
||||
severity: critical
|
||||
annotations:
|
||||
summary: "blog.nadja.top unreachable via IPv4"
|
||||
description: "blog.nadja.top unreachable IPv4, but reachable via IPv6"
|
||||
|
@@ -9,7 +9,7 @@ let
|
||||
|
||||
mkServerBlock = isUDP: port: forward: ''
|
||||
server {
|
||||
resolver 127.0.0.53 ipv4=off;
|
||||
resolver 127.0.0.53 ipv4=off valid=30s;
|
||||
|
||||
listen ${port}${optionalString isUDP " udp"}${optionalString (forward.certName != null) " ssl"};
|
||||
listen [::]:${port}${optionalString isUDP " udp"}${optionalString (forward.certName != null) " ssl"};
|
||||
|
8
pkgs/overrides/dino.nix
Normal file
8
pkgs/overrides/dino.nix
Normal file
@@ -0,0 +1,8 @@
|
||||
final: prev:
|
||||
prev.dino.overrideAttrs (finalAttrs: prevAttrs: {
|
||||
mesonFlags = prevAttrs.mesonFlags ++ [
|
||||
(final.lib.mesonEnable "plugin-openpgp" false)
|
||||
(final.lib.mesonEnable "plugin-notification-sound" false)
|
||||
];
|
||||
})
|
||||
|
@@ -27,5 +27,6 @@
|
||||
update-from-hydra = final: prev: final.callPackage ./update-from-hydra {};
|
||||
uptimestatus = final: prev: final.python3.pkgs.callPackage ./uptimestatus {};
|
||||
|
||||
dino = final: prev: import ./overrides/dino.nix final prev;
|
||||
xmppc = final: prev: import ./overrides/xmppc.nix final prev;
|
||||
}
|
||||
|
Reference in New Issue
Block a user