mirror of
https://github.com/sonertari/SSLproxy
synced 2024-10-31 21:20:21 +00:00
Do not verify server cert due to expired Let's Encrypt cert
This commit is contained in:
parent
5bc6933f79
commit
0600a5c2ea
@ -61,7 +61,8 @@ if [ ! -d "$HOME/opt/$SSL" ]; then
|
||||
if [ "`uname`" = "Linux" ]; then
|
||||
SSLOPTS="$SSLOPTS -Wl,-rpath=$HOME/opt/$SSL/lib"
|
||||
fi
|
||||
wget "$SSLURL" || exit 1
|
||||
# Do not verify server cert due to expired Let's Encrypt cert
|
||||
wget --no-check-certificate "$SSLURL" || exit 1
|
||||
tar -xzvf "$SSL.tar.gz" || exit 1
|
||||
cd "$SSL" || exit 1
|
||||
./config shared \
|
||||
|
Loading…
Reference in New Issue
Block a user