码迷,mamicode.com
首页 > 编程语言 > 详细

为python django配置apache

时间:2014-12-10 00:29:41      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:style   http   ar   os   sp   on   文件   art   log   

  1. 首先下载最新版Apachehttp://httpd.apache.org/download.cgi#apache24,目前官方以不提供安装包,下载好的直接解压至C盘即可,apache自带的配置文件中的默认路径为C盘,如果安装至其他盘,需要修改配置文件。替换下面的相应路径。

    用记事本打开C:\apache24\conf\httpd.conf修改 37行 ServerRoot "c:/Apache24" => ServerRoot "c:/Apache24"(这里输入的是你解压apache安装包的位置

    修改 217行 #ServerName www.example.com:80 => ServerName www.example.com:80 

    修改 241行 DocumentRoot "c:/Apache24/htdocs" => DocumentRoot "c:/Apache24/htdocs" 

    修改 242行 <Directory "c:/Apache24/htdocs"> => <Directory "c:/Apache24/htdocs"> 

    修改 358行 ScriptAlias /cgi-bin/ "c:/Apache24/cgi-bin/"  => ScriptAlias /cgi-bin/ "c:/Apache24/cgi-bin/"

    修改 374行 <Directory "c:/Apache24/cgi-bin"> => <Directory "c:/Apache24/cgi-bin">

    双击c:\apache24\bin\ApacheMonitor.exe后,在窗口中点击apache24启动即可,进入http://localhost/若显示It works则安装成功。

  2.下载mod_wsgi http://www.lfd.uci.edu/~gohlke/pythonlibs/#mod_wsgi,将解压后得到的mod_wsgi.so放入Apache24/modules中。

    打开apache24/conf/httpd.conf,在相应位置添加 LoadModule wsgi_module modules/mod_wsgi.so。

    打开ApacheMonitor.exe,restart Apache24。如果正常启动,打开Apache24/logs/error.log,看到mod_wsgi: Runtime using Python/2.7.8.则mod_wsgi安装成功。

 

为python django配置apache

标签:style   http   ar   os   sp   on   文件   art   log   

原文地址:http://www.cnblogs.com/StartoverX/p/4154494.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!