10 lines
217 B
Bash
Executable File
10 lines
217 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ "${NGX_STREAM}" = 0 ] ; then
|
|
unset NGX_STREAM_SSL_PROFILE
|
|
else
|
|
## here should be SANE defaults (!)
|
|
NGX_STREAM_SSL_PROFILE="${NGX_STREAM_SSL_PROFILE:-intermediate}"
|
|
export NGX_STREAM_SSL_PROFILE
|
|
fi
|