Type: Tutorial Difficulty: Intermediate
I have a fresh website based on Apache+PHP5 to be converted into Nginx and PHP5-FastCGI. What can I do?
Stage 1 CGI version of PHP5
Nginx only supports CGI version of PHP5 (not the Apache module). In FastCGI mode, PHP5 runs like a server that forks out a number of children to handle incoming requests. [...]