Django上线部署之Apache的方法
环境:
1.Windows Server 2016 Datacenter 64位
2.SQL Server 2016 Enterprise 64位
3.Python 3.6.0 64位
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 -k install
6.下载编译后的wsgi(mod_wsgi-4.5.24+ap24vc14-cp36-cp36m-win_amd64.whl)
7.cmd执行:pip install 【路径】\mod_wsgi-4.5.24+ap24vc14-cp36-cp36m-win_amd64.whl
8.cmd执行:mod_wsgi-express module-config(执行结果追加到【httpd.conf】)
LoadFile "d:/programs/python/python36.dll" LoadModule wsgi_module "d:/programs/python/lib/site-packages/mod_wsgi/server/mod_wsgi.cp36-win_amd64.pyd" WSGIPythonHome "d:/programs/python"
9.修改【httpd.conf】
Define SRVROOT "c:/Apache24" ServerName 【IP】:80 Include conf/extra/httpd-vhosts.conf(取消注释)
10.修改【extra/httpd-vhosts.conf】,如下:
<VirtualHost *:80> ServerName "192.168.70.111" DocumentRoot "${SRVROOT}/htdocs/MySite" ErrorLog "logs/project-error.log" CustomLog "logs/project-access.log" common </VirtualHost> Alias /media/ "${SRVROOT}/htdocs/MySite/media/" <Directory "${SRVROOT}/htdocs/MySite/media/"> Require all granted </Directory> Alias /static/ "${SRVROOT}/htdocs/MySite/static/" <Directory "${SRVROOT}/htdocs/MySite/static/"> Require all granted </Directory> WSGIScriptAlias / "${SRVROOT}/htdocs/MySite/project/wsgi.py" <Directory "${SRVROOT}/htdocs/MySite/project/"> <Files wsgi.py> Require all granted </Files> </Directory>
11.启动c:\Apache24\bin\ApacheMonitor.exe
总结
以上所述是小编给大家介绍的Django上线部署之Apache的方法,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对脚本之家网站的支持!
如果你觉得本文对你有帮助,欢迎转载,烦请注明出处,谢谢!
相关文章
CentOS7 修改网卡名称为eth0&在VMWare中添加多网卡配置
这篇文章主要介绍了CentOS7 修改网卡名称为eth0&在VMWare中添加多网卡配置,具有一定的参考价值,感兴趣的小伙伴们可以参考一下。2017-03-03详解Centos7.2编译安装zabbix3.2(详细步骤)
这篇文章主要介绍了详解Centos7.2编译安装zabbix3.2(详细步骤),小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧2018-02-02linux 配置本地yum源,配置国内yum源,配置epel源的步骤
这篇文章主要介绍了linux 配置本地yum源,配置国内yum源,配置epel源的步骤,帮助大家更好的配置服务器,感兴趣的朋友可以了解下2020-12-12
最新评论