Hello i have problem with my Django React project .. i have 403 error on static files(js, css)..Error 403 NGINX Django
config ->
server {
server_name thewatchesmania.com www.thewatchesmania.com;
location = /favicon.ico { access_log off; log_not_found off; }
location /static/ {
    root /home/user/pyapps/The-Watches-Mania/static;
}
location /media/ {
    root /home/user/pyapps/The-Watches-Mania;
}
location / {
    include proxy_params;
    proxy_pass http://unix:/run/gunicorn.sock;
}
 
    