欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Django上线部署之IIS

程序员文章站 2023-11-17 15:52:16
环境: 1.Windows Server 2016 Datacenter 64位 2.SQL Server 2016 Enterprise 64位 3.Python 3.6.0 64位 4.administrator用户,无域环境,最高权限 要求: 按照顺序部署 1.安装数据库2.安装数据库客户端【 ......

环境:
  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.安装iis
5.安装cgi

6.将源码拷贝至【c:\inetpub\wwwroot\mysite】

  (mysite是自定义文件夹,wwwroot是iis默认网站存放的文件夹,为避免权限问题,不建议变动)

7.cmd 执行:pip install -r requirements(安装依赖包)

8.cmd 执行:pip install wfastcgi

9.cmd 执行:wfastcgi-enable(获取脚本处理器信息,第8步需要使用)
  【scriptprocessor】
    结构:<python安装路径>\python.exe|<python安装路径>\lib\site-packages\wfastcgi.py
    例如:【d:\programs\python\python.exe|d:\programs\python\lib\site-packages\wfastcgi.py】

7.打开iis管理器添加网站,网站名称为【mysite】,物理路径为【c:\inetpub\wwwroot\mysite】,选择ip和端口

8.在【c:\inetpub\wwwroot\mysite】文件夹下添加文件【web.config】,内容如下(【】内是需要替换的部分):

 1 <?xml version="1.0" encoding="utf-8"?>
 2 <configuration>
 3     <system.webserver>
 4         <handlers>
 5             <add name="python fastcgi" 
 6                     path="*" 
 7                     verb="*" 
 8                     modules="fastcgimodule" 
 9                     scriptprocessor="【d:\programs\python\python.exe|d:\programs\python\lib\site-packages\wfastcgi.py】" 
10                     resourcetype="unspecified" 
11                     requireaccess="script"/>
12         </handlers>
13     </system.webserver>
14     <appsettings>
15         <add key="wsgi_handler" value="django.core.wsgi.get_wsgi_application()" />
16         <add key="pythonpath" value="【c:\inetpub\wwwroot\mysite】" />
17         <add key="django_settings_module" value="【项目名.settings】" />
18     </appsettings>
19 </configuration>

9.在网站【mysite】添加【static】虚拟目录

10.在【c:\inetpub\wwwroot\mysite\static】文件夹下添加文件【web.config】,内容如下:

 1 <?xml version="1.0" encoding="utf-8"?>
 2 
 3 <configuration>
 4     <system.webserver>
 5         <!-- this configuration overrides the fastcgi handler to let iis serve the static files -->
 6         <handlers>
 7             <clear/>
 8             <add name="staticfile" path="*" verb="*" modules="staticfilemodule" resourcetype="file" requireaccess="read" />
 9         </handlers>
10     </system.webserver>
11 </configuration>

11.在网站【mysite】添加【media】虚拟目录
12.在【c:\inetpub\wwwroot\mysite\media】文件夹下添加文件【web.config】,内容如下:

 1 <?xml version="1.0" encoding="utf-8"?>
 2 <configuration>
 3     <system.webserver>
 4         <!-- this configuration overrides the fastcgi handler to let iis serve the static files -->
 5         <handlers>
 6             <clear/>
 7             <add name="mediafile" path="*" verb="*" modules="staticfilemodule" resourcetype="file" requireaccess="read" />
 8         </handlers>
 9     </system.webserver>
10 </configuration>

 

权限相关的报错,执行如下三步:
13.cmd 执行:%windir%\system32\inetsrv\appcmd unlock config -section:system.webserver/handlers
14.cmd 执行:%windir%\system32\inetsrv\appcmd unlock config -section:system.webserver/modules
15.右键点击【mysite】,点击【编辑权限】,在【安全】选项卡里给iis_iusers赋予【完全控制】的权限