Skip to content

Month: September 2018

Django admin CSS 遺失的問題

Django 嘗試使用 Nginx + uwsgi 去部署後,出現 admin 的 CSS, Javascript……等,都噴 404 分析 在我的 Django 專案中,setting.py中配置是這樣 STATIC_URL =’/static/’ STATICFILES_DIRS =(     os.path.join(BASE_DIR,“static”), )   解決方案決之路 在 setting.py 中新增配置 STATIC_ROOT ,然後執行 python manage.py…