fix(bds_settings): Serve files at the right url

This commit is contained in:
Tom Hubrecht 2025-01-11 14:16:13 +01:00
parent 9e185c8cb5
commit f5bfbddfbe
Signed by: thubrecht
SSH key fingerprint: SHA256:r+nK/SIcWlJ0zFZJGHtlAoRwq1Rm+WcKAm5ADYMoQPc

View file

@ -129,10 +129,10 @@ SITE_ID = 1
# Staticfiles configuration
STATIC_ROOT = credentials["STATIC_ROOT"]
STATIC_URL = "/gestion/static/"
STATIC_URL = "/static/"
MEDIA_ROOT = credentials.get("MEDIA_ROOT", (BASE_DIR / "media"))
MEDIA_URL = "/gestion/media/"
MEDIA_URL = "/media/"
##