mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
fix(core): Correct NODE_OPTIONS export syntax for custom certificates (#13779)
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
if [ -d /opt/custom-certificates ]; then
|
if [ -d /opt/custom-certificates ]; then
|
||||||
echo "Trusting custom certificates from /opt/custom-certificates."
|
echo "Trusting custom certificates from /opt/custom-certificates."
|
||||||
export NODE_OPTIONS=--use-openssl-ca $NODE_OPTIONS
|
export NODE_OPTIONS="--use-openssl-ca $NODE_OPTIONS"
|
||||||
export SSL_CERT_DIR=/opt/custom-certificates
|
export SSL_CERT_DIR=/opt/custom-certificates
|
||||||
c_rehash /opt/custom-certificates
|
c_rehash /opt/custom-certificates
|
||||||
fi
|
fi
|
||||||
|
|||||||
Reference in New Issue
Block a user