Answer the question
In order to leave comments, you need to log in
css not included (staticfiles, staticroot)?
settings.py
STATIC_URL = '/static/'
STATIC_ROOT = os.path.join(os.path.dirname(BASE_DIR), "static_cdn")
STATICFILES_DIRS = [
os.path.join(BASE_DIR, "static"),
]
MEDIA_URL = "/media/"
MEDIA_ROOT = os.path.join(os.path.dirname(BASE_DIR), "media_cdn")
Django-blog/
├── media_cdn
│ ├── 11
│ ├── 13
│ ├── 16
│ └── None
├── mysite
│ ├── blog
│ │ ├── migrations
│ │ └── templates
│ ├── comments
│ │ └── migrations
│ ├── mysite
│ └── static
│ └── css
├── static_cdn
│ ├── admin
│ │ ├── css
│ │ ├── fonts
│ │ ├── img
│ │ │ └── gis
│ │ └── js
│ │ ├── admin
│ │ └── vendor
│ │ ├── jquery
│ │ └── xregexp
│ ├── css
│ ├── pagedown
│ │ ├── demo
│ │ │ ├── browser
│ │ │ └── node
│ │ └── local
│ └── pagedown-extra
│ └── pagedown
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question