I followed the steps from the tutorial and made everything accordingly but I still see the default page which is weird because I do not even know from where is coming, here is my wsgi file: Thanks
import os
import sys
path = '/home/andercorobert/app/agile'
if path not in sys.path:
sys.path.insert(0, path)
os.environ['DJANGO_SETTINGS_MODULE'] = 'agile.settings'
from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()
[edit by admin: formatting]