Here is a sample configuration from one of my sites (domains and paths
are altered):
FastCGIExternalServer /var/www/myproject/fcgidummyfile.fcgi -host
127.0.0.1:3044
<VirtualHost *:80>
ServerName example.com
ServerAlias www.example.com
DocumentRoot /var/www/example.com
Alias /static /var/www/example.com_static
RewriteEngine On
RewriteRule ^/(static.*)$ /$1 [QSA,L,PT]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^/(.*)$ /fcgidummyfile.fcgi/$1 [QSA,L]
</VirtualHost>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django users" 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/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---