This commit is contained in:
Luciano Milani
2026-07-02 12:47:55 +01:00
commit 5de37bb512
132 changed files with 28495 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
#!/bin/sh
set -e
NAMESERVER=$(awk '/^nameserver/{print $2; exit}' /etc/resolv.conf)
NAMESERVER=${NAMESERVER:-127.0.0.11}
sed -i "s/__RESOLVER__/$NAMESERVER/" /etc/nginx/conf.d/default.conf
exec nginx -g "daemon off;"