Windows+apache+mod_python Configure Django Runtime Environment _ server other

Source: Internet
Author: User
1, create MySite test site: django-admin.py startproject MySite

2, create test page: hello.py, the contents are as follows:

From django.http import HttpResponse

def index (Request):
Return HttpResponse (' Hello, django! ')


3, create mod_py_dj.conf configuration file, the contents are as follows:

LoadModule Python_module Modules/mod_python_so.pyd

Listen 8081
Namevirtualhost *:8081
<virtualhost *:8081>
<location "/" >
SetHandler Python-program
Pythonpath "[' d:\open\www '] + sys.path"
Pythonhandler Django.core.handlers.modpython
Setenv Django_settings_module mysite.settings
Pythonautoreload off
Pythondebug on
</Location>
</VirtualHost>

Note: In this virtualhost, you do not need to configure documentroot, otherwise add the following additional:

<directory "D:\open\www" >
Options FollowSymLinks
AllowOverride All
Order Allow,deny
Allow from all
</Directory>

Do not configure DocumentRoot, less configuration.


4, modify the url.py file, add a line:

(R ' ^hello/$ ', ' Mysite.hello.index ')


5, Test, http://localhost:8081/hello/
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.