don't use port 80 for FastCGI. chances are that it's already used
--
Javier
absolutely.
the port used between the webserver and webapp must _not_ be the same
where the browsers connect to the webserver.
--
Javier
sometimes flup (and other fastcgi launchers) bind only to the
127.0.0.1 IP. if you want to put the webserver and webapp on
different machines, be sure to bind to all IPs (typically setting "0"
as IP on the launcher). if both webserver and webapp are on the same
machine, faster and safer is to use 127.0.0.1 (and even faster and
safer is to use socket files)
--
Javier