Skip to content

Commit 662143c

Browse files
authored
Merge branch 'develop' into develop
2 parents 4bb237d + c60fc79 commit 662143c

File tree

7 files changed

+27
-9
lines changed

7 files changed

+27
-9
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,10 @@ services:
8080
8181
```bash
8282
docker-compose up -d
83+
84+
# If using docker-compose-plugin
85+
docker compose up -d
86+
8387
```
8488

8589
4. Log in to the Admin UI

docker/rootfs/etc/cont-init.d/01_s6-secret-init.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# ref: https://github.com/linuxserver/docker-baseimage-alpine/blob/master/root/etc/cont-init.d/01-envfile
33

44
# in s6, environmental variables are written as text files for s6 to monitor
5-
# seach through full-path filenames for files ending in "__FILE"
5+
# search through full-path filenames for files ending in "__FILE"
66
for FILENAME in $(find /var/run/s6/container_environment/ | grep "__FILE$"); do
77
echo "[secret-init] Evaluating ${FILENAME##*/} ..."
88

docker/rootfs/etc/services.d/nginx/run

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,12 @@ chown root /tmp/nginx
2424

2525
# Dynamically generate resolvers file, if resolver is IPv6, enclose in `[]`
2626
# thanks @tfmm
27-
echo resolver "$(awk 'BEGIN{ORS=" "} $1=="nameserver" { sub(/%.*$/,"",$2); print ($2 ~ ":")? "["$2"]": $2}' /etc/resolv.conf) valid=10s;" > /etc/nginx/conf.d/include/resolvers.conf
28-
27+
if [ "$DISABLE_IPV6" == "true" ] || [ "$DISABLE_IPV6" == "on" ] || [ "$DISABLE_IPV6" == "1" ] || [ "$DISABLE_IPV6" == "yes" ];
28+
then
29+
echo resolver "$(awk 'BEGIN{ORS=" "} $1=="nameserver" { sub(/%.*$/,"",$2); print ($2 ~ ":")? "["$2"]": $2}' /etc/resolv.conf) ipv6=off valid=10s;" > /etc/nginx/conf.d/include/resolvers.conf
30+
else
31+
echo resolver "$(awk 'BEGIN{ORS=" "} $1=="nameserver" { sub(/%.*$/,"",$2); print ($2 ~ ":")? "["$2"]": $2}' /etc/resolv.conf) valid=10s;" > /etc/nginx/conf.d/include/resolvers.conf
32+
fi
2933
# Generate dummy self-signed certificate.
3034
if [ ! -f /data/nginx/dummycert.pem ] || [ ! -f /data/nginx/dummykey.pem ]
3135
then

docs/advanced-config/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ services running on this Docker host:
1818
```yml
1919
networks:
2020
default:
21-
external:
22-
name: scoobydoo
21+
external: true
22+
name: scoobydoo
2323
```
2424
2525
Let's look at a Portainer example:
@@ -38,8 +38,8 @@ services:
3838

3939
networks:
4040
default:
41-
external:
42-
name: scoobydoo
41+
external: true
42+
name: scoobydoo
4343
```
4444
4545
Now in the NPM UI you can create a proxy host with `portainer` as the hostname,

docs/third-party/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Third Party
22

3-
As this software gains popularity it's common to see it integrated with other platforms. Please be aware that unless specifically mentioned in the documenation of those
3+
As this software gains popularity it's common to see it integrated with other platforms. Please be aware that unless specifically mentioned in the documentation of those
44
integrations, they are *not supported* by me.
55

66
Known integrations:

global/certbot-dns-plugins.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -209,6 +209,16 @@ dns_dnspod_api_token = "id,key"`,
209209
dependencies: '',
210210
credentials: 'dns_do_api_token = YOUR_DO_DE_AUTH_TOKEN',
211211
full_plugin_name: 'dns-do',
212+
},
213+
//####################################################//
214+
domeneshop: {
215+
display_name: 'Domeneshop',
216+
package_name: 'certbot-dns-domeneshop',
217+
version_requirement: '~=0.2.8',
218+
dependencies: '',
219+
credentials: `dns_domeneshop_client_token=YOUR_DOMENESHOP_CLIENT_TOKEN
220+
dns_domeneshop_client_secret=YOUR_DOMENESHOP_CLIENT_SECRET`,
221+
full_plugin_name: 'dns-domeneshop',
212222
},
213223
//####################################################//
214224
dynu: {

scripts/docs-upload

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ALL_FILES=$(find . -follow)
1212

1313
for FILE in $ALL_FILES
1414
do
15-
# remove preceeding ./
15+
# remove preceding ./
1616
FILE=$(echo "$FILE" | sed -E "s/\.\///g")
1717
echo '======================================='
1818
echo "FILE: $FILE"

0 commit comments

Comments
 (0)