LoginSignup
2
1

More than 3 years have passed since last update.

nginx + django でcssが出ない

Last updated at Posted at 2020-04-20

django単体だと大丈夫なのにnginxと連携させるとdjangoの管理者画面がcssなしになる。
管理者画面のcssは普段見えないがdjango単体で動かすときは実行時に生成される模様?
nginxと連携するときnginx管理下にcssを配置してあげることで解消する。

以下のコマンドを実行すると、settings.pyで指定しているstaticフォルダに管理者画面のcssなどがコピーされる。

python manage.py collectstatic

綺麗に掃除してコピーする場合はこれ。

python manage.py collectstatic --clear
2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1