[Haskell-cafe] Re: Question about fastcgi

2008-11-28 Thread ChrisK
Er, no. A fastcgi executable is (like a cgi executable) controlled by the front end web server. I run my fastcgi using Apache as the front end. The front end web server will control things like the port number. Mauricio wrote: Hi, I'm learnng to use fastcgi and, reading the examples, I

Re: [Haskell-cafe] Re: Question about fastcgi

2008-11-28 Thread Colin Paul Adams
ChrisK == ChrisK [EMAIL PROTECTED] writes: ChrisK Er, no. A fastcgi executable is (like a cgi executable) ChrisK controlled by the front end web server. I run my fastcgi ChrisK using Apache as the front end. The front end web server ChrisK will control things like the port

[Haskell-cafe] Re: Question about fastcgi

2008-11-28 Thread ChrisK
I have only used this, all of these are from Haskell: pamac-cek10:~ chrisk$ cat /etc/apache2/other/httpd-fastcgi.conf IfModule mod_fastcgi.c Alias /fcgi-bin/ /Library/WebServer/FastCGI-Executables/ Directory /Library/WebServer/FastCGI-Executables/ AllowOverride None Options None

[Haskell-cafe] Re: Question about fastcgi

2008-11-28 Thread Mauricio
I was able to get this working with lighttpd, and I did had to choose a port, but only at lighttpd configuration, not at the Haskell source. Thanks, Maurício ChrisK a écrit : I have only used this, all of these are from Haskell: pamac-cek10:~ chrisk$ cat /etc/apache2/other/httpd-fastcgi.conf