Django上线部署之Apache的方法
环境:
1.WindowsServer2016Datacenter64位
2.SQLServer2016Enterprise64位
3.Python3.6.064位
4.administrator用户,无域环境,最高权限
要求:
按照顺序部署
1.安装数据库
2.安装数据库客户端【SSMS】
3.安装Python
4.下载apache2.4(httpd-2.4.41-win64-VC14.zip)
5.解压至C盘根目录,打开cmd执行:C:\Apache24\bin\httpd.exe-kinstall
6.下载编译后的wsgi(mod_wsgi-4.5.24+ap24vc14-cp36-cp36m-win_amd64.whl)
7.cmd执行:pipinstall【路径】\mod_wsgi-4.5.24+ap24vc14-cp36-cp36m-win_amd64.whl
8.cmd执行:mod_wsgi-expressmodule-config(执行结果追加到【httpd.conf】)
LoadFile"d:/programs/python/python36.dll" LoadModulewsgi_module"d:/programs/python/lib/site-packages/mod_wsgi/server/mod_wsgi.cp36-win_amd64.pyd" WSGIPythonHome"d:/programs/python"
9.修改【httpd.conf】
DefineSRVROOT"c:/Apache24" ServerName【IP】:80 Includeconf/extra/httpd-vhosts.conf(取消注释)
10.修改【extra/httpd-vhosts.conf】,如下:
ServerName"192.168.70.111" DocumentRoot"${SRVROOT}/htdocs/MySite" ErrorLog"logs/project-error.log" CustomLog"logs/project-access.log"common Alias/media/"${SRVROOT}/htdocs/MySite/media/"Requireallgranted Alias/static/"${SRVROOT}/htdocs/MySite/static/"Requireallgranted WSGIScriptAlias/"${SRVROOT}/htdocs/MySite/project/wsgi.py"Requireallgranted
11.启动c:\Apache24\bin\ApacheMonitor.exe
总结
以上所述是小编给大家介绍的Django上线部署之Apache的方法,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对毛票票网站的支持!
如果你觉得本文对你有帮助,欢迎转载,烦请注明出处,谢谢!