How to install mod_wsgi for apache 2.4 and python 3.4 on windows?

It is better to build mod_wsgi yourself from code rather than use an arbitrary binary off the net. The steps are as follows. Ensure you have a decent Apache installation which includes header files, e.g. Apache 2.4.37 Win64 from Apache Lounge . Preferably installed at location of C:/Apache24. Ensure your Python installation is set up … Read more

how to fix stream_socket_enable_crypto(): SSL operation failed with code 1

Editor’s note: disabling SSL verification has security implications. Without verification of the authenticity of SSL/HTTPS connections, a malicious attacker can impersonate a trusted endpoint such as Gmail, and you’ll be vulnerable to a Man-in-the-Middle Attack. Be sure you fully understand the security issues before using this as a solution. You can add below code in … Read more