From 00a4326246b0ad1ef1fb79211bd516afd5847b0f Mon Sep 17 00:00:00 2001 From: Thomas M Date: Thu, 27 Nov 2025 17:06:17 +0000 Subject: [PATCH] =?UTF-8?q?powerdns/.env=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- powerdns/.env | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 powerdns/.env diff --git a/powerdns/.env b/powerdns/.env new file mode 100644 index 0000000..33771fe --- /dev/null +++ b/powerdns/.env @@ -0,0 +1,26 @@ +# Container names +DB_CONTAINER_NAME=pdns-db +PDNS_CONTAINER_NAME=pdns-server + +# MariaDB settings +MYSQL_ROOT_PASSWORD=rootpassword +MYSQL_DATABASE=pdns +MYSQL_USER=pdns +MYSQL_PASSWORD=StrongPasswordHere +DB_VOLUME=db_data + +# PowerDNS settings +PDNS_API=yes +PDNS_API_KEY=SuperSecretAPIKey +PDNS_WEBSERVER=yes +PDNS_WEBSERVER_ALLOW_FROM=0.0.0.0/0 +PDNS_WEBSERVER_PORT=8081 +PDNS_LAUNCH=gmysql +PDNS_GMYSQL_HOST=db +PDNS_GMYSQL_USER=pdns +PDNS_GMYSQL_PASSWORD=StrongPasswordHere +PDNS_GMYSQL_DBNAME=pdns +PDNS_VOLUME=pdns_data + +# Ports +PDNS_API_PORT=8081