mirror of
https://github.com/nginx-proxy/docker-letsencrypt-nginx-proxy-companion
synced 2024-11-23 00:52:02 +01:00
30 lines
491 B
Bash
Executable File
30 lines
491 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
globalTests+=(
|
|
docker_api
|
|
docker_api_legacy
|
|
location_config
|
|
default_cert
|
|
certs_single
|
|
certs_san
|
|
certs_single_domain
|
|
certs_standalone
|
|
force_renew
|
|
acme_accounts
|
|
private_keys
|
|
container_restart
|
|
permissions_default
|
|
permissions_custom
|
|
symlinks
|
|
acme_hooks
|
|
ocsp_must_staple
|
|
)
|
|
|
|
# The acme_eab test requires Pebble with a specific configuration
|
|
if [[ "$ACME_CA" == 'pebble' && "$PEBBLE_CONFIG" == 'pebble-config-eab.json' ]]; then
|
|
globalTests+=(
|
|
acme_eab
|
|
)
|
|
fi
|