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的方法,大家如有疑问可以留言,或者联系站长。感谢亲们支持!!!
如果你觉得本文对你有帮助,欢迎转载,烦请注明出处,谢谢!


数据运维技术 » Django上线部署之Apache的方法