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:
parent
35ced9a451
commit
7edc5d0165
1 changed files with 1 additions and 1 deletions
|
@ -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'
|
||||
|
|
Loading…
Reference in a new issue