Tearing my hair out here...

Getting a "400 - Bad Request"

I've done everything I can find in any tutorial... please help! Trying
to run on Apache 1.3 with FastCGI

------------------------
In my httpd.conf
------------------------

<IfModule mod_fastcgi.c>
        FastCGIExternalServer /home/user/public_html/mysite.fcgi -host
127.0.0.1:3033
</IfModule>


<VirtualHost myipaddress>
ServerAlias mywebsite.com
ServerAdmin [EMAIL PROTECTED]
DocumentRoot /home/myusername/public_html
BytesLog domlogs/mywebsite.com-bytes_log
ServerName www.mywebsite.com

User myusername
Group myusername
CustomLog /usr/local/apache/domlogs/mywebsite.com combined
ScriptAlias /cgi-bin/ /home/myusername/public_html/cgi-bin/

Alias /media
./usr/local/lib/python2.4/site-packages/Django-0.95-py2.4.egg/django/contrib/admin/media

RewriteEngine On
RewriteRule ^/(media.*)$ /$1 [QSA,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^/(.*)$ mysite.fcgi/$1 [QSA,L]

</VirtualHost>


I have my project set up under /home/myusername/content
I started the fastcgi server with  ./manage.py fastcgi method=threaded
host=127.0.0.1 port=3033

I get no errors when starting the server, and I can see it running in
my process list.


Any ideas??

Thanks!
Andy


--~--~---------~--~----~------------~-------~--~----~
 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