溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Django上線部署之IIS的配置方法

發(fā)布時間:2020-09-03 23:05:42 來源:腳本之家 閱讀:320 作者:mrr 欄目:開發(fā)技術(shù)

環(huán)境:

1 .Windows Server 2016 Datacenter 64位

2 .SQL Server 2016 Enterprise 64位

3 .Python 3.6.0 64位

4.administrator用戶,無域環(huán)境,最高權(quán)限

要求:

按照順序部署

1 .安裝數(shù)據(jù)庫

2 .安裝數(shù)據(jù)庫客戶端【SSMS】

3 .安裝Python

4 .安裝IIS

5.安裝CGI

6.將源碼拷貝至【C:\inetpub\wwwroot\MySite】

( MySite是自定義文件夾,wwwroot是IIS默認(rèn)網(wǎng)站存放的文件夾,為避免權(quán)限問題,不建議變動)

7.cmd 執(zhí)行:pip install -r requirements(安裝依賴包)

8.cmd 執(zhí)行:pip install wfastcgi

9 .cmd 執(zhí)行:wfastcgi-enable(獲取腳本處理器信息,第8步需要使用)

【scriptProcessor】

結(jié)構(gòu):<Python安裝路徑>\python.exe|<Python安裝路徑>\lib\site-packages\wfastcgi.py

例如:【d:\programs\python\python.exe|d:\programs\python\lib\site-packages\wfastcgi.py】

7.打開IIS管理器添加網(wǎng)站,網(wǎng)站名稱為【MySite】,物理路徑為【C:\inetpub\wwwroot\MySite】,選擇IP和端口

8.在【C:\inetpub\wwwroot\MySite】文件夾下添加文件【web.config】,內(nèi)容如下(【】內(nèi)是需要替換的部分):

 <?xml version="1.0" encoding="UTF-8"?>
 <configuration>
   <system.webServer>
     <handlers>
       <add name="Python FastCGI" 
           path="*" 
           verb="*" 
           modules="FastCgiModule" 
           scriptProcessor="【d:\programs\python\python.exe|d:\programs\python\lib\site-packages\wfastcgi.py】" 
           resourceType="Unspecified" 
           requireAccess="Script"/>
     </handlers>
   </system.webServer>
   <appSettings>
     <add key="WSGI_HANDLER" value="django.core.wsgi.get_wsgi_application()" />
     <add key="PYTHONPATH" value="【C:\inetpub\wwwroot\MySite】" />
     <add key="DJANGO_SETTINGS_MODULE" value="【項目名.settings】" />
   </appSettings>
 </configuration>

9.在網(wǎng)站【MySite】添加【static】虛擬目錄

10.在【C:\inetpub\wwwroot\MySite\static】文件夾下添加文件【web.config】,內(nèi)容如下:

<?xml version="1.0" encoding="UTF-8"?>
 
 <configuration>
   <system.webServer>
     <!-- this configuration overrides the FastCGI handler to let IIS serve the static files -->
     <handlers>
       <clear/>
       <add name="StaticFile" path="*" verb="*" modules="StaticFileModule" resourceType="File" requireAccess="Read" />
     </handlers>
   </system.webServer>
 </configuration>

11 .在網(wǎng)站【MySite】添加【media】虛擬目錄

12.在【C:\inetpub\wwwroot\MySite\media】文件夾下添加文件【web.config】,內(nèi)容如下:

 <?xml version="1.0" encoding="UTF-8"?>
 <configuration>
   <system.webServer>
     <!-- this configuration overrides the FastCGI handler to let IIS serve the static files -->
     <handlers>
       <clear/>
       <add name="MediaFile" path="*" verb="*" modules="StaticFileModule" resourceType="File" requireAccess="Read" />
     </handlers>
   </system.webServer>
 </configuration>

權(quán)限相關(guān)的報錯,執(zhí)行如下三步:

13 .cmd 執(zhí)行:%windir%\system32\inetsrv\appcmd unlock config -section:system.webServer/handlers

14 .cmd 執(zhí)行:%windir%\system32\inetsrv\appcmd unlock config -section:system.webServer/modules

15.右鍵點擊【MySite】,點擊【編輯權(quán)限】,在【安全】選項卡里給IIS_IUSERS賦予【完全控制】的權(quán)限

總結(jié)

以上所述是小編給大家介紹的Django上線部署之IIS的配置方法,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復(fù)大家的。在此也非常感謝大家對億速云網(wǎng)站的支持!
如果你覺得本文對你有幫助,歡迎轉(zhuǎn)載,煩請注明出處,謝謝!

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI