Hi All

I've added this config in the .../conf.d/ of Apache:
Listen 8080
NameVirtualHost *:8080
WSGIPythonPath /home/Aza/Downloads/django121
<VirtualHost *:8080>
    ServerAdmin [email protected]
    DocumentRoot /var/www/html
    ServerName django.localhost
    ErrorLog /var/log/httpd/django.localhost-error_log
    CustomLog /var/log/httpd/django.localhost-access_log common
    WSGIScriptAlias / /home/Aza/Downloads/django121/firstproject/
djangoweb/django.wsgi
    WSGIDaemonProcess django.localhost processes=2 threads=15 display-
name=%{GROUP}
    WSGIProcessGroup django.localhost
    <Directory /home/Aza/Downloads/django121/firstproject/media>
        Order allow,deny
        Allow from all
    </Directory>
    <Directory /home/Aza/Downloads/django121/firstproject/djangoweb>
        Order allow,deny
        Allow from all
    </Directory>
    <Directory /var/www/html>
        Options Indexes FollowSymLinks
        AllowOverride None
        Order allow,deny
        Allow from all
    </Directory>
</VirtualHost>

But when I try to access this from my browser I get the error
mentioned above. All works well when I use the runserver built into
Django.
Please assist.
Thanks
Aza

-- 
You received this message because you are subscribed to the Google Groups 
"modwsgi" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/modwsgi?hl=en.

Reply via email to