Python Forum
location settings for Django Uwsgi Nginx Configuration for production
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
location settings for Django Uwsgi Nginx Configuration for production
#1
Django settings

STATICFILES_DIRS = [STATIC_DIR, ]
STATIC_DIR = os.path.join(BASE_DIR, 'static')
STATIC_ROOT = '/home/sandyman/production/django_project/assets/'
STATIC_URL = '/assets/'

local machine example file

/home/sandyman/development/django_project/css/bootstrap.min.css
Template

{% load staticfiles %}
href="{% static "css/bootstrap.min.css" %}"
Production environment

ran python manage.py collectstatic

this succesfully created all files in sub directories of

**/home/sandyman/production/django_project/assets/**

e.g. /home/sandyman/production/django_project/assets/css/bootstrap.min.css


** NGING configuration


**server {
server_name sandyman.xyz www.sandyman.xyz ;
location /static {
alias /home/sandyman/production/django_project/assets/;
}
}**
** GET Request **

Request URL:http://www.sandyman.xyz/static/css/bootstrap.min.css
Request Method:GET
**Status Code:404 NOT FOUND**

file bootstrap is located in

/home/sandyman/production/django_project/assets/css/bootstrap.min.css
Please assist me .. Ive tried many iterations of values for nginx location but no success
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  How to set up uwsgi and nginx? Stas43 2 1,234 Apr-21-2023, 10:51 AM
Last Post: Stas43
  XAMPP Configuration of Python lavanyadeepak 1 1,381 Mar-19-2023, 02:52 PM
Last Post: snippsat
  Python flask uwsgi nginx docker mfaridi 2 1,866 Sep-14-2022, 11:07 AM
Last Post: mfaridi
  Configuration file through helm charts saisankalpj 0 1,726 Aug-23-2022, 01:32 PM
Last Post: saisankalpj
  Azure Function App Configuration Settings jdb1234 1 2,145 Oct-16-2020, 10:54 AM
Last Post: ndc85430
  run watchdog in flask app with uwsgi experimental 0 2,903 Apr-25-2020, 09:44 PM
Last Post: experimental
  Django: How to automatically substitute a variable in the admin page at Django 1.11? m0ntecr1st0 3 3,315 Jun-30-2019, 12:21 AM
Last Post: scidam
  flask to uwsgi threading issue batchenr 1 4,062 Jun-17-2019, 02:12 PM
Last Post: batchenr
  Multi-tier Web application File Storage (NginX, File System or FTP) ? draems 0 1,625 Apr-22-2019, 07:47 AM
Last Post: draems
  paths in django 'settings.py' nzcan 0 2,422 Oct-19-2018, 04:51 AM
Last Post: nzcan

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020