django配置apache服務器(下)

接着上篇django在apache上須要下載mod_wsgi.so python

把擴張名whl改爲zip,解壓後會有mod-wsgi.so放在\Apache24\modules下, android

在文件conf/httd.conf中添加:LoadModule wsgi_module modules/mod_wsgi.so
web

這個按文件中的格式添加就行。 apache

啓動apache,若是能啓動起來就說明配置對了。不然就錯了。最多見的錯誤就是mod_wsgi.so版本問題。上面的那個網站版本不全,能夠在這裏下載:http://download.csdn.net/detail/copter/9192361別人編譯好的各個版本。 django

啓動後就要配置django項目,有兩種方法:在httpd.conf直接配置;在django建立個文件,在httpd.conf中包含進去。兩種添加的內容都是同樣的,推薦後者,擴張性更好: api

----------------------------------------------------------------------------------- 網站

1.。。。。直接在httpd.conf直接配置

WSGIScriptAlias / "C:/Users/liuxi_001/Desktop/web/MyBlog/MyBlog/wsgi.py"
WSGIPythonPath "C:/Users/liuxi_001/Desktop/web/MyBlog"

Alias /static "C:/Users/liuxi_001/Desktop/web/MyBlog/static"

<Directory "C:/Users/liuxi_001/Desktop/web/MyBlog/MyBlog">
     <Files wsgi.py>
       Require all granted
       </Files>
</Directory> ui


------------------------------------------------------------------------------------------

2.。。。。 spa

建立apache-django-wsgi.conf,內容: .net

WSGIScriptAlias / "C:/Users/liuxi_001/Desktop/web/MyBlog/MyBlog/wsgi.py"
WSGIPythonPath "C:/Users/liuxi_001/Desktop/web/MyBlog"

Alias /static "C:/Users/liuxi_001/Desktop/web/MyBlog/static"

<Directory "C:/Users/liuxi_001/Desktop/web/MyBlog/MyBlog">
     <Files wsgi.py>
       Require all granted
       </Files>
</Directory>

在httpd.conf添加文件apache-django-wsgi.conf:

Include "xxxxx/web/MyBlog/apache_django_wsgi.conf"就是apache-django-wsgi.conf文件的目錄。


---------------------------------------------------------------------------------------------------------------------

運行原來的hello world。

注意:android訪問django api須要關閉防火牆,要否則會一直提示timeout(我用的volley)。

設置setting.py debug=False是,要配置ALLOWED_HOSTS = ['192.168.1.126','127.0.0.1']紅色添加進去的。

不然會報錯:bad request:400

相關文章
相關標籤/搜索