Django Debug False Admin Static Files

Well i have a new web site as some of you know www.nysera.com, after i turn off debug mode i was able to server all static files except my admin css, js and image files.
I gathered those files via collectstatic function but at the end i had to modify my apache config for wsgi and add two aliases for both media and static urls.

Alias /media/ /home/adressto/nysera/media/
Alias /static/ /home/adressto/nysera/static/

Please check this url in case you need more info https://docs.djangoproject.com/en/1.7/howto/deployment/wsgi/modwsgi/#serving-files

and check your apache config file on sites-enabled folder.