Move the Django media URL from /media to just /m, so we get shorter overall URLs to that kinda stuff

This commit is contained in:
Danielle McLean 2018-06-28 09:37:18 +10:00
parent 35ced9a451
commit 7edc5d0165
Signed by: 00dani
GPG Key ID: 8EB789DDF3ABD240
1 changed files with 1 additions and 1 deletions

View File

@ -17,6 +17,6 @@ SHORT_BASE_URL = 'https://nya.as/'
STATIC_ROOT = join(BASE_DIR, '..', 'static')
MEDIA_ROOT = join(BASE_DIR, '..', 'media')
STATIC_URL = 'https://cdn.00dani.me/'
MEDIA_URL = STATIC_URL + 'media/'
MEDIA_URL = STATIC_URL + 'm/'
META_SITE_DOMAIN = '00dani.me'
META_FB_APPID = '145311792869199'