From e1be762a2a8de8d88513da5aa2819dda6b9c9870 Mon Sep 17 00:00:00 2001 From: Andreas Bohne-Lang Date: Fri, 5 May 2023 18:10:14 +0200 Subject: [PATCH] Create dns_del_dnsmasq Delete _acme-challenge for dnsmasq - a lightweight DHCP and caching DNS server --- dns_scripts/dns_del_dnsmasq | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 dns_scripts/dns_del_dnsmasq diff --git a/dns_scripts/dns_del_dnsmasq b/dns_scripts/dns_del_dnsmasq new file mode 100644 index 0000000..771aaec --- /dev/null +++ b/dns_scripts/dns_del_dnsmasq @@ -0,0 +1,7 @@ +#!/usr/bin/env bash + +# Make sure you enable in the /etc/dnsmasq.conf this line conf-dir=/etc/dnsmasq.d/,*.conf + +echo "" > /etc/dnsmasq.d/acme-challenge.conf + +systemctl restart dnsmasq