This repository was archived by the owner on Feb 11, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +0
-9
lines changed Expand file tree Collapse file tree 2 files changed +0
-9
lines changed Original file line number Diff line number Diff line change @@ -64,7 +64,6 @@ Some settings are configurable through app config vars at runtime:
64
64
65
65
- `` STUNNEL_ENABLED `` : Default to true, enable or disable stunnel.
66
66
- `` STUNNEL_LOGLEVEL `` : Default is ` notice ` , set to ` info ` or ` debug ` for more verbose log output.
67
- - `` STUNNEL_FORCE_TLS `` : Default is unset. Set this var, to force TLSv1 on cedar-10.
68
67
69
68
### Multiple Redis Instances
70
69
Original file line number Diff line number Diff line change 2
2
URLS=${REDIS_STUNNEL_URLS:- REDIS_URL `compgen -v HEROKU_REDIS`}
3
3
n=1
4
4
5
- # Enable this option to prevent stunnel from using SSLv3 with cedar-10
6
- if [ -z " ${STUNNEL_FORCE_TLS} " ]; then
7
- STUNNEL_FORCE_SSL_VERSION=" "
8
- else
9
- STUNNEL_FORCE_SSL_VERSION=" sslVersion = TLSv1"
10
- fi
11
-
12
5
mkdir -p /app/vendor/stunnel/var/run/stunnel/
13
6
14
7
cat >> /app/vendor/stunnel/stunnel.conf << EOFEOF
@@ -22,7 +15,6 @@ options = SINGLE_DH_USE
22
15
socket = r:TCP_NODELAY=1
23
16
options = NO_SSLv3
24
17
TIMEOUTidle = 86400
25
- ${STUNNEL_FORCE_SSL_VERSION}
26
18
ciphers = HIGH:!ADH:!AECDH:!LOW:!EXP:!MD5:!3DES:!SRP:!PSK:@STRENGTH
27
19
debug = ${STUNNEL_LOGLEVEL:- notice}
28
20
EOFEOF
You can’t perform that action at this time.
0 commit comments