[転送]nginx+php

WBOY
リリース: 2016-06-23 14:36:38
オリジナル
1007 人が閲覧しました

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;

charset gb2312;

場所 / {

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 バイナリへの絶対パス

FCGIPROGRAM=”/usr/local/bin/php-cgi”


## localhost でバインドする TCP ポート

FCGIPORT=”1026″


## 生成する PHP 子の数

PHP_FCGI_CHILDREN=10


## 単一の PHP プロセスが再起動されるまでに処理できるリクエストの最大数

PHP_FCGI_MAX_REQUESTS=1000


## PHP がサーバー接続にアクセスする必要がある IP アドレス

FCGI_WEB_SERVER_ADDRS=”127.0.0.1″


# スペースで区切られた許可される環境変数

ALLOWED_ENV=”ORACLE_HOME PATH USER”


## このスクリプトが root として実行される場合, 次のユーザーに切り替えます

USERID=nobody

GROUPID=nobody

chongqi

#!/bin/bash

killall -9 nginx php-cgi ;スリープ 1 ;/usr/local/nginx/sbin/spawn-php.sh ; nginx


関連ラベル:
ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート