Hola:
Tengo un hosting con python+django. tengo los siguientes archivos configurados:
/.htaccess
Código:
AddHandler fcgid-script .fcgi
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.fcgi/$1 [QSA,L]
/index.fcgi
Código:
#!/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")
/wsgi.py
Código:
import os
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "site_django.settings")
from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()
Pero me da el siguiente error:
Unhandled Exception
An unhandled exception was thrown by the application.
Me pueden orientar para ver como solucionarlo. Lo que tengo solamente es el proyecto inicial que cree con django. El servidor cuenta con apache+fastcgi.
Saludos y gracias de antemano.