1
0

initial commit

This commit is contained in:
2025-06-05 11:01:19 +03:00
commit 48f13f97a3
297 changed files with 7136 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
#!/bin/sh
if [ -z "${NGX_SSL_CERT_FILE:-}" ] ; then
unset NGX_SSL_CERT_FILE
if [ -n "${SSL_CERT_FILE:-}" ] ; then
log_always "SSL_CERT_FILE is already set (=${SSL_CERT_FILE})"
NGX_SSL_CERT_FILE=${SSL_CERT_FILE}
else
NGX_SSL_CERT_FILE="${volume_root}/ca.pem"
fi
fi
export NGX_SSL_CERT_FILE