Hi thanks for answering.
I had set STATIC_ROOT
in setting.py to a folder inside the apache example.com
root directory where all my other website files that are working well are, with the same read permission.
I ran collectstatic
and the files where copied there succesfully.
How can I map STATIC_URL
to STATIC_ROOT
in the server? I tought it was adding Alias /static/ /path/to/STATIC_ROOT
with its correspondent directory Require all granted
in my django.conf where WSGIScriptAlias
is but it didn’t work for me.