apt-get install libjpeg-devel libpng-devel freetype-devel libxml2-devel mysql-devel pcre-devel bzip2-devel
./configure ?prefix=/usr/local/nginx ?http-fastcgi-temp-path= /usr/local/nginx/fastcgi_temp/ ?http-proxy-temp-path=/usr/local/nginx/proxy_temp/ ?without-http_upstream_ip_hash_module ?without-http_geo_module ?without-http_memcached_module ?without-http_map_module ?without-http_ssi_module ?with- http_ssl_module ?with-openssl=/usr/local/ssl/lib
注意すべき点は、SSL をサポートする場合は、openssl 097 のバージョンを使用する必要があることです。 http://www.openssl.org/source/openssl- 0.9.7m.tar.gz编译php
./configure ?prefix=/usr/local/php ?enable-mbstring ?with-mysql=/usr/ ?disable-dom ?enable-fastcgi ?with-gd ? with-config-file-path=/usr/local/php/etc/ ?with-zlib-dir=/usr ?with-jpeg-dir=/usr ?with-png-dir=/usr ?without-pear ?without -sqlite ?enable-force-cgi-redirect ?with-freetype-dir ?enable-fpm ?with-fpm-conf=/usr/local/php/etc/fpm.conf ?with-fpm-log=/usr/local /nginx/logs/fpm.log ?with-fpm-pid=/usr/local/nginx/logs/fpm.pid
server {
listen 80;
server_name xxx.net;
場所 / {
root /data/www/xxxx/;
indexindex.htmlindex.htmindex.php;
許可 1.1.1.1;
すべて拒否 すべて;
location ~ .php$ {
root /data/www/ xxxx/;
include /etc/fcgi.conf;
fastcgi_pass 127.0.0.1:1026;
fastcgi_index Index.php;
}
}
その中に/etc/fcgi.confの内容
fastcgi_param GATEWAY_INTERFACE CGI/1.1;
fastcgi_param SERVER_SOFTWARE nginx;fastcgi_param QUERY_STRING $query_string;
fastcgi_param REQUEST_METHOD $request_method;
fastcgi_param CONTENT_TYPE $content_type;
fastcgi_param CONTENT_LENGTH $content_length;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param SCRIPT_NAME $fastcgi_script_name;
fastcgi_param REQUEST_URI $request_uri;
fastcgi_param DOCUMENT_URI $document_uri;
fastcgi_param DOCUMENT_ROOT $document_root;
fastcgi_param SERVER_PROTOCOL $server_protocol;
fastcgi_param REMOTE_ADDR $remote_addr;
fastcgi_param REMOTE_PORT $remote_port;
fastcgi_param SERVER_ADDR $server_addr;
fastcgi_param SERVER_PORT $server_port;
fastcgi_param SERVER_NAME $server_name;
# PHP のみ、PHP が ?enable-force-cgi-redirect
fastcgi_param を使用してビルドされた場合に必要です REDIRECT_STATUS 200;
用lighttpdのspawn-fcgi和spawn-php.sh
#!/bin/bash
## への絶対パスspawn-fcgi binary
SPAWNFCGI=”/usr/local/nginx/sbin/spawn-fcgi”
## PHP バイナリへの絶対パス
## localhost でバインドする TCP ポート
## 生成する PHP 子の数
## 単一の PHP プロセスが再起動されるまでに処理できるリクエストの最大数
## PHP がサーバー接続にアクセスする必要がある IP アドレス
# スペースで区切られた許可される環境変数
## このスクリプトが root として実行される場合, 次のユーザーに切り替えます
GROUPID=nobody
chongqi
#!/bin/bash
killall -9 nginx php-cgi ;スリープ 1 ;/usr/local/nginx/sbin/spawn-php.sh ; nginx