In my Apache configuration I have these lines:
SSLRandomSeed connect builtin
SSLRandomSeed connect file:/dev/random
SSLRandomSeed connect file:/dev/urandom 1024
How, exactly, does Apache interpret this? Does it first try builtin and then move to /dev/random
if that fails? If it uses /dev/random
, and /dev/random
then runs out of entropy, does it automatically switch to /dev/urandom
? Is there an Apache document somewhere that explains all this?