為了配置基於 mod_python 的 Django,首先要安裝有可用的 mod_python 模組的 Apache。 這通常意味著應該有一個 LoadModule 指令在 Apache 設定檔中。 它看起來就像是這樣:
LoadModule python_module /usr/lib/apache2/modules/mod_python.so
Then, edit your Apache configuration file and add a directive that ties a specific URL path to a specific Django installation. 例如:
SetHandler python-program PythonHandler django.core.handlers.modpython SetEnv DJANGO_SETTINGS_MODULE mysite.settings PythonDebug Off
要確保把 DJANGO_SETTINGS_MODULE 中的 mysite.settings 項目換成與你的網站相應的內容。
它告訴 Apache,任何在 / 這個路徑之後的 URL 都使用 Django 的 mod_python 來處理。 它 將 DJANGO_SETTINGS_MODULE 的值傳遞過去,使得 mod_python 知道這時應該使用哪個配置。
注意這裡使用 ```` 指令而不是 ```` 。 後者用於指向你的檔案系統中的一個位置,然而 ````
System Message: WARNING/2 (, line 403); backlinkInline literal start-string without end-string.System Message: WARNING/2 (, line 403); backlinkInline literal start-string without end-string.System Message: WARNING/2 (, line 403); backlinkInline literal start-string without end-string.System Message: WARNING/2 (, line 403); backlinkInline literal start-string without end-string.System Message: ERROR/3 (, line 405)Unexpected indentation.
指向一個 Web 網站的 URL 位置。 ````
System Message: WARNING/2 (, line 405); backlink Inline literal start-string without end-string. System Message: WARNING/2 (, line 405); backlink Inline literal start-string without end-string.
Apache 可能不但會運行在你正常登入的環境中,也會運行在其它不同的使用者環境中;也可能會有不同的檔案路徑或 sys.path。 你需要告訴 mod_python 如何去尋找你的項目及 Django 的位置。
PythonPath "['/path/to/project', '/path/to/django'] + sys.path"
你也可以加入一些其它指令,比如 PythonAutoReload Off 以提升效能。 查看 mod_python 文檔獲得詳細的指令列表。
注意,你應該在成品伺服器上設定 PythonDebug Off 。如果你使用 PythonDebug On 的話,在程式產生錯誤時,你的使用者會看到難看的(並且是暴露的) Python 回溯資訊。 如果你把 PythonDebug 置 On,當mod_python出現某些錯誤,你的使用者會看到醜陋的(也會暴露某些資訊)Python的對錯誤的追蹤的資訊。
重啟 Apache 之後所有對你的網站的請求(或者是當你用了 指令後則是虛擬機器主機)都會由 Djanog 來處理。