1、下载Windows版Apache
2、打开httpd.conf文件
2-1改Apache实际绝对安装目录:最后结尾处不能带"/“或”",因为后面配置的目录开头已经带有"/“或”",如下图所示(其中“${SRVROOT}”指定义的SRVROOT路径变量):
若你的80端口被占用(可在cmd下用命令netstat -ano | findstr 80),则将80端口改为别的保存。
测试配置文件是否合法:
httpd -t
2-2安装Apache的主服务:有了它,Apache才可启动。可以添加httpd.exe环境变量,然后打开cmd窗口,输入:
httpd -k install -n Apache
3、Apache服务器的启动
找到bin目录下的ApacheMonitor.exe,打开
4、[Django配置参考](https://www.cnblogs.com/shenh/p/7552722.html)
4-1.打开Apache配置文件 httpd.conf
#添加mod_wsgi.so 模块
LoadFile "c:/python34/DLLs/python3.dll"
LoadModule wsgi_module "c:/python34/lib/site-packages/mod_wsgi/server/mod_wsgi.pyd"
WSGIPythonHome "c:/python34"
#指定myweb项目的wsgi.py配置文件路径
WSGIScriptAlias / D:/mysite/mysite/wsgi.py
#指定项目路径
WSGIPythonPath D:/mysite
<Directory D:/mysite/mysite>
<Files wsgi.py>
Require all granted
</Files>
</Directory>
Alias /static D:/mysite/static
<Directory D:/mysite/static>
AllowOverride None
Options None
Require all granted
</Directory>
4-2、django项目setting配置:
DEBUG = False
ALLOWED_HOSTS = ['127.0.0.1','localhost'] #允许访问的ip。也可以用'*'表示,代表不受限制