Lines Matching refs:to

7 You must add '--enable-fastcgi' to the configure command on Linux or
8 OSX based systems to get fastcgi support in the php-cgi binary. You
14 There are two ways to run the resulting 'php' binary after the fastcgi
17 1) Configure your web server to run the PHP binary itself.
19 This is the simplest method, obviously you will have to configure your
29 and a port number to listen to on the command line, e.g.:
34 want the FastCGI server to provide services to the localhost, not
45 You must also configure your web server to connect to the appropriate port
46 in order to talk to the PHP FastCGI process.
50 allows PHP to be on an entirely separate machine from the web server if need
59 However, there are advantages to running PHP with FastCGI. Separating the
62 PHP process as opposed to one per apache process means that shared resources
75 CGI scripts. You'll need to create a directory somewhere to store your
76 FastCGI binaries. We'll use /space/fcgi-bin/ for this example. Remember to
78 php to run under mod_fastcgi as a dynamic server.
86 To setup a specific static configuration for php, you have to use
92 FastCgiServer /path/to/php-cgi -processes 5
94 For either of the above configurations, we need to tell Apache to
95 use the FastCGI binary /fcgi-bin/php to deliver PHP pages.
114 Be sure to run the php binary as an appropriate userid. Also, firewall out
116 variable FCGI_WEB_SERVER_ADDRS to control who can connect to the FastCGI.
117 Set it to a comma separated list of IP addresses, e.g.:
125 There are a few tuning parameters that can be tweaked to control the
138 their death. So by default, you will be able to handle 1 concurrent PHP page
141 time to create, or supply a lot of data (e.g. downloading huge files via PHP).
150 necessary because several PHP functions are known to have memory leaks. If the