I can't view my site over ssl.  If I go to http://www.mysite.com, the
site works.  If I go to https://www.mysite.com, I get a secure
connection, but my django app isn't get served, but rather /var/www/
index.html is.  Here's my apache config for mysite:

<VirtualHost *:443>
    ServerName mysite.com
    ServerAlias www.mysite.com
    <Location "/">
        SetHandler python-program
        PythonHandler django.core.handlers.modpython
        SetEnv DJANGO_SETTINGS_MODULE mysite.settings
        PythonDebug Off
        PythonPath "['/home/django/django-projects/', '/home/django/
django-projects/mysite/'] + sys.path"
        PythonInterpreter ssl_mysite
    </Location>
</VirtualHost>

<VirtualHost *:80>
    ServerName mysite.com
    ServerAlias www.mysite.com
    <Location "/">
        SetHandler python-program
        PythonHandler django.core.handlers.modpython
        SetEnv DJANGO_SETTINGS_MODULE mysite.settings
        PythonDebug Off
        PythonPath "['/home/django/django-projects/', '/home/django/
django-projects/mysite/'] + sys.path"
        PythonInterpreter mysite
    </Location>
</VirtualHost>

keith
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to