comodo does not update

DA-Rff

Verified User
Joined
Dec 4, 2006
Messages
119
I am on freebsd 9.2 64 bit with latest DA

When running ./build modsecurity_rules I get the following error:

Code:
Installing Comodo Rule Set for ModSecurity...
Downloading             cwaf_rules-1.39.tgz...
--2015-08-05 10:21:07--  https://waf.comodo.com/api/da_vendor?file=cwaf_rules-1.39.tgz
Resolving waf.comodo.com (waf.comodo.com)... 91.209.196.88
Connecting to waf.comodo.com (waf.comodo.com)|91.209.196.88|:443... connected.
ERROR: cannot verify waf.comodo.com's certificate, issued by 'CN=COMODO RSA Extended Validation Secure Server CA,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB':
  Self-signed certificate encountered.
To connect to waf.comodo.com insecurely, use `--no-check-certificate'.

If I try to update through DA admin panel, that does not work either.

Any ideas how to fix this?

thanks.
 
OK found it, posting here for others:

http://help.directadmin.com/item.php?id=119 had the answer. Including changed instructions for freebsd

Sometimes the precompiled wget binaries refuse to work with your ssl linked libraries.
The simple solution is to compile a new wget binary to be used with your ssl libraries.

wget http://files.directadmin.com/services/wget-1.8.2.tar.gz
tar xvzf wget-1.8.2.tar.gz
cd wget-1.8.2
./configure --prefix=/usr/local --with-ssl
make
make install

All working fine now!
 
Back
Top