I can't found my static files like css, js and picture. I get 404 error page.
In my settings django I have
STATIC_ROOT = '/var/lib/openshift/*id*/app-root/repo/*project*/*app*'
STATIC_URL = '/static/'
and my filesystem are
- project
- app
- wsgi.py
- static # I also tried to move this folder in wsgi folder
- css
- base.css
- ...
I tried to move the static folder in wsgi folder created before. I also tried to move my static folder or wsgi folder in data folder of openshift without success.
I follow few help posts from Stackoverflow without found my answer
Can you help me to configure my static folder ?
Thanks