1、服務器上開發模式啓動html
登陸到238,su到root,切換到對應目錄,執行下面命令便可python
/home/boco4a/caoqinghui/admindjango
python3 manage.py runserver 0.0.0.0:8000nginx
訪問地址:http://10.175.121.238:8000/admincenter/index/web
2、nginx+uwsgi部署django
1.修改django工程配置文件settings.py服務器
debug=Falseui
allow_host=[‘*’]spa
STATIC_ROOT =os.path.join(BASE_DIR,」/var/static」)#靜態文件重定位 debug
再進行靜態文件的轉移 在項目目錄下進行: Python3 manage.py collectstatic 這一步的順序很重要,不然路徑會有問題.server
這時能夠用下面這個命令去運行項目 Uwsgi –http :8000 –chdir /home/user/project/hello –module hello.wsgi –static-map=/static=/var/static/ 也能夠正常訪問頁面,包括加載靜態頁面
2.uwsgi安裝配置
查看uwsgi版本:uwsgi --version
uwsgi --ini myweb_uwsgi.ini #啓動uwsgi
myweb_uwsgi.ini配置文件
3.nginx安裝配置
http://blog.sina.com.cn/s/blog_89c23f1f0102xbhc.html
conf下nginx.conf配置文件