Just my two cents:
You may build OpenSSL from source using something like
$ ./config threads shared no-krb5 no-zlib no-idea \
no-mdc2 no-rc5 --prefix=/usr/local/ssl
$ make depend && make && make install
Then build Pound from source using
$ ./configure --with-ssl=/usr/local/ssl
* I found it useful to explicitly increase thread stack size,
* in pound.c:362:
*
* if(pthread_attr_setstacksize(&attr, 1 << 18))
* replace with
* if(pthread_attr_setstacksize(&attr, 1 << 19))
finally
$ make && make install
Also see this:
http://www.targeted.org/secure-cd.html
Sincerely,
Dmitry Dvoinikov
Olivier Nicole wrote:[...]
|