Does this  conf file look right? In particular the fcgi statement

 fastcgi.server = (
                "/mysite.fcgi" =>

and

 fastcgi.server = (
                "/mysite.fcgi" => (
                        "main" => (

each is a different django project using a different fastcgi socket.


$HTTP["host"] =~ "(www|projects).somesite.com" {
        server.document-root = "/web1/httpd/htdocs/"
        fastcgi.server = (
                "/mysite.fcgi" => (
                        "main" => (
                                # Use host / port instead of socket
for TCP fastcgi
                                # "host" => "127.0.0.1",
                                # "port" => 3033,
                                "socket" => "/usr1/local/oper/
mysite.sock",
                                "min-procs" => 1,
                                "max-procs" => 25,
                                "idle-timeout" => 30,
                                "max-load-per-proc" => 5,
                                "check-local" => "disable",
                                "bin-environment" => (
                                        "TZ" => "America/Los_Angeles"
                                )
                        )
                ),
        )
 }

# for classifieds
$HTTP["host"] == "anywhere.somesite.com" {
        server.document-root = "/web1/httpd/htdocs/"
        fastcgi.server = (
                "/mysite.fcgi" => (
                        "main" => (
                                # Use host / port instead of socket
for TCP fastcgi
                                # "host" => "127.0.0.1",
                                # "port" => 3033,
                                "socket" => "/usr1/local/oper/
class.sock",
                                "min-procs" => 1,
                                "max-procs" => 6,
                                "idle-timeout" => 60,
                                #"max-load-per-proc" => 5,
                                "check-local" => "disable",
                                "bin-environment" => (
                                        "TZ" => "America/Los_Angeles"
                                )
                        )
                ),
        )
}


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