From 08528ab175c93ce2ba034d84a7208695def3e68c Mon Sep 17 00:00:00 2001 From: casjay Date: Tue, 27 Aug 2024 11:34:45 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=97=83=EF=B8=8F=20Committing=20everything?= =?UTF-8?q?=20that=20changed=20=F0=9F=97=83=EF=B8=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit rootfs/tmp/etc/bind/named.conf rootfs/usr/local/etc/docker/init.d/03-php-fpm.sh --- rootfs/tmp/etc/bind/named.conf | 6 +++--- rootfs/usr/local/etc/docker/init.d/03-php-fpm.sh | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/rootfs/tmp/etc/bind/named.conf b/rootfs/tmp/etc/bind/named.conf index 05e1100..22af31d 100644 --- a/rootfs/tmp/etc/bind/named.conf +++ b/rootfs/tmp/etc/bind/named.conf @@ -6,9 +6,6 @@ key "rndc-key" { algorithm hmac-sha256; secret "REPLACE_KEY_RNDC"; }; key "backup-key" { algorithm hmac-sha256; secret "MKEQ/REPLACE_KEY_BACKUP"; }; key "certbot." { algorithm hmac-sha512; secret "REPLACE_KEY_CERTBOT"; }; ##################################################################### -# rndc settings -controls { inet 127.0.0.1 allow { trusted; } keys { "rndc-key"; }; }; -##################################################################### # access settings acl "all" { 0.0.0.0/0; ::/0; }; acl "secondary" { REPLACE_DNS_SERVER_SECONDARY; }; @@ -17,6 +14,9 @@ acl "updates" { key "dhcp-key"; key "certbot."; }; acl "transfers" {key "dhcp-key"; key "certbot."; key "backup-key"; secondary; }; acl "forward" { 1.1.1.1; 8.8.8.8; 4.4.4.4; }; ##################################################################### +# rndc settings +controls { inet 127.0.0.1 allow { trusted; } keys { "rndc-key"; }; }; +##################################################################### options { version "9"; listen-on { any; }; diff --git a/rootfs/usr/local/etc/docker/init.d/03-php-fpm.sh b/rootfs/usr/local/etc/docker/init.d/03-php-fpm.sh index d9317a9..19ef10a 100755 --- a/rootfs/usr/local/etc/docker/init.d/03-php-fpm.sh +++ b/rootfs/usr/local/etc/docker/init.d/03-php-fpm.sh @@ -114,9 +114,9 @@ SERVICE_UID="0" # set the user id SERVICE_GID="0" # set the group id # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - # execute command variables - keep single quotes variables will be expanded later -EXEC_CMD_BIN='php-fpm' # command to execute -EXEC_CMD_ARGS='--allow-to-run-as-root --fpm-config $ETC_DIR/php-fpm/php-fpm.conf' # command arguments -EXEC_PRE_SCRIPT='' # execute script before +EXEC_CMD_BIN='php-fpm' # command to execute +EXEC_CMD_ARGS='--allow-to-run-as-root --fpm-config $ETC_DIR/php-fpm.conf' # command arguments +EXEC_PRE_SCRIPT='' # execute script before # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - # Is this service a web server IS_WEB_SERVER="no"