settings.py에서 Debug=True 모드에서 False(production 모드)로 변경시 static 경로 접근이 안된다.
static 자원에 접근통제는 web server로 맏기게 되는데..

일단은 web server 없이 Debug=True로 static자원을 정상접근가능하게 하기한 두가지 방법이 있다.

 

1. runserver --insecure 옵션추가

-- console환경에서 python manage.py runserver --insecure 0.0.0.0:8000 &

-- eclipse환경에서 Project > Properties > Run/Debug Settings 에서 해당 프로젝트 선탣해서 Edit > Arguments
runserver --insecure

 

2. project root urls에 static 경로 수동으로 강제 등록 (나는 이렇게 했다.)

from django.urls.conf import re_path
from django.contrib.staticfiles.views import serve
from django.conf import settings

urlpatterns = [
    ....


    # Static file
    re_path(r"^static/(?P<path>.*)$", serve, kwargs={"insecure":True})

    ....

] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
Django/Jinja2

 

참고 : https://docs.djangoproject.com/en/5.1/howto/static-files/#serving-static-files-during-development