Hi, I try step by step instructions for create a django app, but does not work, I see log errors and has this lines: [Mon Aug 05 02:48:08 2013] [notice] caught SIGTERM, shutting down [Mon Aug 05 02:48:13 2013] [warn] mod_wsgi: Compiled for Python/2.7.3. [Mon Aug 05 02:48:13 2013] [warn] mod_wsgi: Runtime using Python/2.7.5. [Mon Aug 05 02:48:13 2013] [notice] Apache/2.2.17 (Unix) mod_wsgi/3.4 Python/2.7.5 configured -- resuming normal operations How to compile wsgi for the correct version of python asked 04 Aug '13, 22:13 rogerio |
This related community question has a full compilation guide for Apache with mod_wsgi. The following is a (non-fatal) warning:
Because patch level changes are backward-compatible, using mod_wsgi compiled for python 2.7.3 with a runtime (input) of 2.7.5 should work without problems. Hope that helps! answered 05 Aug '13, 01:03 ryans ♦♦ |