Compare commits
12 Commits
0.4.0
...
lego/set-e
| Author | SHA1 | Date | |
|---|---|---|---|
| e9a3c7f0d1 | |||
| 8e8f4251d4 | |||
| 41dfab3ef7 | |||
|
39b7190342
|
|||
|
a3ed7081f8
|
|||
|
b564b1579f
|
|||
|
52f6f5b45b
|
|||
|
d0203a5dd7
|
|||
|
72bb3fd273
|
|||
|
766957254a
|
|||
|
5e777934ed
|
|||
|
b44110704b
|
@@ -10,7 +10,7 @@
|
||||
vars:
|
||||
_dns_record:
|
||||
type: "CNAME"
|
||||
name: "_acme-challenge.{{ _domain }}"
|
||||
name: "_acme-challenge.{{ _domain }}."
|
||||
content: "{{ target_tsig_key_name }}.{{ target_acme_zone }}."
|
||||
loop: "{{ target_domains }}"
|
||||
loop_control:
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
lego_user: "lego"
|
||||
lego_version: "4.25.2"
|
||||
lego_version: "4.28.1"
|
||||
lego_instance: default
|
||||
lego_base_path: "/opt/lego"
|
||||
lego_cert_user: "acme-{{ lego_instance }}"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
set -xeuo pipefail
|
||||
|
||||
LEGO_BINARY=$(/usr/bin/env which lego)
|
||||
|
||||
@@ -8,8 +8,11 @@ if [[ -n "${LEGO_HTTP_FALLBACK_PORT:-}" ]]; then
|
||||
echo "nc not found (in PATH), exiting"
|
||||
exit 1
|
||||
fi
|
||||
set +e
|
||||
nc -z 127.0.0.1 $LEGO_HTTP_PORT;
|
||||
if [[ $? -eq 0 ]]; then
|
||||
nc_exit_code=$?;
|
||||
set -e
|
||||
if [[ $nc_exit_code -eq 0 ]]; then
|
||||
LEGO_HTTP_PORT=$LEGO_HTTP_FALLBACK_PORT
|
||||
fi
|
||||
fi
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
minio_container_name: minio
|
||||
minio_container_image_name: "docker.io/minio/minio"
|
||||
minio_container_image_tag: "RELEASE.2025-07-23T15-54-02Z"
|
||||
minio_container_image_tag: "RELEASE.2025-10-15T17-29-55Z"
|
||||
minio_container_image: "{{ minio_container_image_name }}:{{ minio_container_image_tag }}"
|
||||
minio_container_networks: []
|
||||
minio_container_ports: []
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
nginx_version: "1.29.1"
|
||||
nginx_version: "1.29.3"
|
||||
nginx_flavour: alpine
|
||||
nginx_base_path: /opt/nginx
|
||||
nginx_config_file: "{{ nginx_base_path }}/nginx.conf"
|
||||
|
||||
Reference in New Issue
Block a user