Tengo un hosting con python+django. tengo los siguientes archivos configurados:
/.htaccess
Código:
/index.fcgiAddHandler fcgid-script .fcgi RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.fcgi/$1 [QSA,L]
Código:
/wsgi.py#!/usr/bin/python import sys, os # Add a custom Python path. (optional) sys.path.insert(0, "/home") # Switch to the directory of your project. os.chdir("/home/www/site_django") # Set the DJANGO_SETTINGS_MODULE environment variable. os.environ['DJANGO_SETTINGS_MODULE'] = "site_django.settings" from django.core.servers.fastcgi import runfastcgi runfastcgi(method="threaded", daemonize="false")
Código:
Pero me da el siguiente error:import os os.environ.setdefault("DJANGO_SETTINGS_MODULE", "site_django.settings") from django.core.wsgi import get_wsgi_application application = get_wsgi_application()
Unhandled ExceptionMe pueden orientar para ver como solucionarlo. Lo que tengo solamente es el proyecto inicial que cree con django. El servidor cuenta con apache+fastcgi.
An unhandled exception was thrown by the application.
Saludos y gracias de antemano.