[REBOL] Re: About FastCGI
From: petr:krenzelok:trz:cz at: 29-Jun-2001 10:06
Hi,
one more thing - I struggled loading mod_fastcgi.dll into apache, to find one
hour later Netscape doesn't correctly download the file. So I used rebol and
read/binary - the correct size of .dll is: 163840
However - even this library is somehow not loadably by load/library. I am just
curious why rebol can't load all types of .dll libraries ....
What I am trying to find out is - why rebolcmd.exe process is left, and
doesn't remain to be loaded (persistent). I use following httpd.conf info:
LoadModule fastcgi_module modules/mod_fastcgi.dll ; at the end of module
list
ScriptAlias /fcgi-bin/ "c:/local-www/fcgi-bin/"
<Directory "c:/local-www/fcgi-bin">
Options ExecCGI
</Directory>
<Location "c:/local-www/fcgi-bin">
SetHandler fastcgi-script
</Location>
and the solution is to add one another line:
FastCGIServer "c:/pekr/rebol/command/rebolcmd.exe" -processes 5
Heh, great! During the weekend I will try to set-up external Rebol processes
server, but without session afinity, it's a little bit difficult to handle
requests ...
-pekr-
Rondon Andrade wrote: