Projet

Général

Profil

0001-debian-set-media-root-directory-in-single-tenant-mod.patch

Benjamin Renard, 10 février 2022 18:59

Télécharger (890 octets)

Voir les différences:

Subject: [PATCH] debian: set media root directory in single-tenant mode
 (#61593)

License: MIT
 debian/debian_config.py | 1 +
 1 file changed, 1 insertion(+)
debian/debian_config.py
13 13
DEBUG = False
14 14

  
15 15
STATIC_ROOT = '/var/lib/authentic2/collectstatic/'
16
MEDIA_ROOT = '/var/lib/authentic2/media/'
16 17
STATICFILES_DIRS = ('/var/lib/authentic2/static',)
17 18
TEMPLATES[0]['DIRS'] = ['/var/lib/authentic2/templates'] + TEMPLATES[0]['DIRS']
18 19
LOCALE_PATHS = ('/var/lib/authentic2/locale',) + LOCALE_PATHS
19
-