1、机器环境
python2.7 32位
django 1.10.3
apache 2.4 64位
windows 10
2、安装Apache2.4
地址:http://www.apachelounge.com/download/
下载:vc_redist.x64.exe 直接安装 vc_redist_x64/86.exe.
3、配置环境变量
配置环境变量:path增加D:\Apache\Apache24\bin
解压到指定目录 修改配置文件: http.conf (下面内容中的ServerRoot改成你自己的实际Apche解压路径)
ServerRoot "D:/Apache/Apache24" (注意去掉前面的#)
……
Listen 127.0.0.1:8081 #修改端口号 (注意去掉前面的#)
……
ServerName www.example.com:8081 (注意去掉前面的#)
……
DocumentRoot "D:/Apache/Apache24/htdocs"
<Directory "D:/Apache/Apache24/htdocs">
……
ScriptAlias /cgi-bin/ "D:/Apache/Apache24/cgi-bin/"
……
<Directory "D:/Apache/Apache24/cgi-bin">
AllowOverride None
Options None
Require all granted
</Directory>
时间: 2024-10-14 10:50:42