On 14 Aug 2008, at 23:41, Maciej Piechotka wrote: > keys = [int(x) for x in tmp.keys()] > ValueError: invalid literal for int() with base 10: > 'ssl_certificate_key_file' > > What's wrong? Version 0.7.2
It looks like if you were using a configuration file written in an old format. Try creating a new one (the format has changed in the latest release). By the way, upgrading to 0.8.0 is *highly* recommended. > [1] Apache folks said it is impossible as it would require decrypt > the message > before the decryption to get the Host header. <Sighhhh..> :-) > I've always wander why it cannot > check all certs one by one to find out correct - but I know little > about > cryptography & SSL. Well, it isn't as straightforward as that. The first thing that the server has to do is to connect with the other end by using SSL/TLS, so at that point, before it receives the HTTP client request, the crypto 'magic' already happened. However, nothing is forever.. and that applies to SSL/TLS connections as well. Why would not it respin the SSL layer once it knew the virtual server? -- Greetings, alo. http://www.alobbs.com/ _______________________________________________ Cherokee mailing list [email protected] http://lists.octality.com/listinfo/cherokee
