Installing mod_wsgi on WAMP server running on Windows 7

本小妞迷上赌 提交于 2019-11-26 19:15:52

问题


I downloaded mod_wsgi from the following location for apache 2.2 and python 2.7 (64bit). (I'm trying to get django to run on my computer).

Whenever I add the following line:

LoadModule wsgi_module modules/mod_wsgi.so

Apache fails to start up. Can anyone tell me what the issue might be?


回答1:


These are the following things you need to do to setup Apache for Django. I assume you are using Python 2.7 (32-bit) on Windows (32-bit) with WAMP server (32-bits) installed.

  1. Download mod_wsgi-win32-ap22py27-3.3.so. Or download your respective .so compatible file

  2. Change its name to mod_wsgi.so and copy it to /Program Files/Apache Software Foundation/Apache22/modules on Windows.

  3. Open httpd.conf using Admin rights. Now, you will find a list of lines with LoadModule .... Just add LoadModule wsgi_module modules/mod_wsgi.so to that list.

    Your are partially done.. you can restart the apache and shouldn't find any errors.

  4. Now you need to link it to your Django project.

  5. In your Django project root folder, add apache folder and create django.wsgi (don't change this name) and apache_mydjango.conf.

  6. In httpd.conf add the following line at the bottom of the page.

    Include "d:/projects/mysite/apache_django_wsgi.conf"

Open django.wsgi and add the following lines:

import os, sys

sys.path.append('d:/projects/mysite')
os.environ['DJANGO_SETTINGS_MODULE'] = 'mysite.settings'

import django.core.handlers.wsgi
application = django.core.handlers.wsgi.WSGIHandler()

Open apache_djang_wsgi.conf and add:

Alias /images/ "d:/projects/mysite/templates/images/"
<Directory "d:/projects/mysite/images>
Order allow,deny
Allow from all
</Directory>

WSGIScriptAlias / "d:/projects/mysite/apache/django.wsgi"

<Directory "d:/projects/mysite/apache">
Allow from all
</Directory>

<VirtualHost *:80>
    DocumentRoot d:/projects/mysite
    ServerName 127.0.0.1

</VirtualHost>

Note:

I am assuming your Django project hierarchy is something like this:

mysite/
        mysite/
                 settings.py
                 urls.py, wsgi.py.
        manage.py
        <apache> / apache_django_wsgi.conf, django.wsgi

Best tutorial links:

  1. port25.technet.com | Published my microsoft.
  2. mod_wsgi Quick Install guide
  3. Django site
  4. Django site

Actually I don't understand why people are unable to fix it. I've seen lots of questions on it here and I even posted few...So, I thought to write a initial setup version directly as answer




回答2:


Try the following websites for the unofficial windows binaries for python extensions http://www.kaij.org/blog/?p=123 https://github.com/kirang89/pycrumbs/pull/28




回答3:


Just in case anyone is using this and doesn't spot it, there is an inconsistency in the steps. In Step 5 it refers to the filename apache_mydjango.conf

In Step 6 it refers to the filename apache_django_wsgi.conf

These should obviously both be the same name - it doesn't matter which way round you go for - but I spent a while trying to figure out why it wasn't working.




回答4:


Only for users running windows 64 versions.

I have created wsgi. Now you only need to install python and run apache. The configurations have already been set in the package. Just download the package and follow the instructions from 'Steps to follow.txt file' present in package.

You dont need to download python and apache and mod_wsgi.so from anywhere. I have compiled the so file, and compatible python and apache2 versions. So that you are ready to deploy. Just that in apache config the document root has been set to cgi-bin folder present inside Apache2.

Package can be downloaded from Zip package

Instructions and package usage




回答5:


Apart from Olly's correction, there is another error in Step6: Instead of

Include "d:/projects/mysite/apache_django_wsgi.conf"

it should be

Include "d:/projects/mysite/apache/apache_django_wsgi.conf"

I made all the steps and now can't start Apache Server anymore. The Wamp Image is red. I could restart Apache as described in Step 3.



来源:https://stackoverflow.com/questions/11602653/installing-mod-wsgi-on-wamp-server-running-on-windows-7

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!