mirror of
https://gitlab.crans.org/bde/nk20
synced 2025-01-22 08:01:18 +00:00
Do not serve static files outside of debug server
This commit is contained in:
parent
c720e5483e
commit
0f1f3b9560
@ -36,8 +36,9 @@ urlpatterns = [
|
||||
path('coffee/', include('django_htcpcp_tea.urls')),
|
||||
]
|
||||
|
||||
urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
|
||||
urlpatterns += static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
|
||||
# During development, serve media files
|
||||
if settings.DEBUG:
|
||||
urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
|
||||
|
||||
|
||||
if "cas_server" in settings.INSTALLED_APPS:
|
||||
|
Loading…
x
Reference in New Issue
Block a user