In this video I show how to deploy django on a CentOS server with cPanel control panel.
###
I leave you the lines of code that you have to add to setting.py
STATIC_URL = '/static/'
MEDIA_URL='/media/'
STATICFILES_DIRS=[BASE_DIR +"/assets",]
STATIC_ROOT='/home/**USER**/public_html/static'
MEDIA_ROOT='/home/**USER**/public_html/media'