1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-23 11:15:13 +03:00
aports/testing/prometheus-unbound-exporter/0001-dont-authenticate-by-default.patch
2022-03-15 15:58:35 +01:00

15 lines
1,002 B
Diff

--- a/unbound_exporter.go
+++ b/unbound_exporter.go
@@ -469,9 +469,9 @@
listenAddress = flag.String("web.listen-address", ":9167", "Address to listen on for web interface and telemetry.")
metricsPath = flag.String("web.telemetry-path", "/metrics", "Path under which to expose metrics.")
unboundHost = flag.String("unbound.host", "tcp://localhost:8953", "Unix or TCP address of Unbound control socket.")
- unboundCa = flag.String("unbound.ca", "/etc/unbound/unbound_server.pem", "Unbound server certificate.")
- unboundCert = flag.String("unbound.cert", "/etc/unbound/unbound_control.pem", "Unbound client certificate.")
- unboundKey = flag.String("unbound.key", "/etc/unbound/unbound_control.key", "Unbound client key.")
+ unboundCa = flag.String("unbound.ca", "", "Unbound server certificate.")
+ unboundCert = flag.String("unbound.cert", "", "Unbound client certificate.")
+ unboundKey = flag.String("unbound.key", "", "Unbound client key.")
)
flag.Parse()