Is there a apache’s SSLRandomSeed alternative in nginx?
I just want to make nginx use specific device like /dev/urandom or
/dev/random. All i could see that nginx code uses srandom() a pseudo
random generator.
Thanks
Alex
Is there a apache’s SSLRandomSeed alternative in nginx?
I just want to make nginx use specific device like /dev/urandom or
/dev/random. All i could see that nginx code uses srandom() a pseudo
random generator.
Thanks
Alex
On Tue, Aug 05, 2008 at 12:42:45AM +0200, Alexander Piavlo wrote:
Is there a apache’s SSLRandomSeed alternative in nginx?
I just want to make nginx use specific device like /dev/urandom or
/dev/random. All i could see that nginx code uses srandom() a pseudo
random generator.
There is no SSLRandomSeed like directive, but it can be easily added.
nginx does not use srandom() for OpenSSL, it relies on OpenSSL default
random seeding. On Unix platforms OpenSSL tries “/dev/urandom”,
“/dev/random”, and “/dev/srandom”. Therefore SSLRandomSeed is required
only
for platforms that have no /dev/*random.
This forum is not affiliated to the Ruby language, Ruby on Rails framework, nor any Ruby applications discussed here.
Sponsor our Newsletter | Privacy Policy | Terms of Service | Remote Ruby Jobs