os 環境: centos 6.1
nginx: nginx-1.2.2
php:php5.3.14
0.依存関係パッケージをインストール
コードをコピー コードは次のとおりです。 :
yum install openssl-devel pcre-devel zlib-devel libjpeg-devel libpng-devel freetype-devel gcc make
1. nginx
mkdir -p /var/tmp/nginx/proxy/
mkdir -p /var/tmp/nginx /fcgi/
wget http://nginx.org/download/nginx-1.2.2.tar.gz
cd nginx-1.2.2/
./ \
--prefix=/opt/web/nginx \
--error -log-path=/var/log/nginx/error.log \
--pid-path=/var/ を設定します。 run/nginx/nginx.pid \
--lock-path=/var/lock/ nginx.lock \
--user=www \
--group=www \
--with -http_ssl_module \
--with-http_stub_status_module \
--with-http_gzip_static_module \
--http-log-path=/var/log/nginx/access.log \
--http- client-body-temp-path=/var/tmp/nginx/client/ \
- -http-proxy-temp-path=/var/tmp/nginx/proxy/ \
--http-fastcgi- temp-path=/var/tmp/nginx/fcgi/ \
--http-uwsgi -temp-path=/var/tmp/nginx/uwsgi/
make
make install
vim /opt/web/nginx/conf/nginx.conf
# 起動ユーザーを指定します。
user www www;
# プロセスの数。独自のトラフィックに基づいて、nginx 作成者は 1 つで十分だと考えています。
worker_processes 1;
# を変更します。 エラー ログ:
#error_log を設定します。 logs/error.log 通知;
#error_log logs/error.log 情報;
error_log /var/log/nginx/ error.default.log;
pid /opt/web/nginx/nginx.pid ;
events {
use epoll;
worker_connections 1024;
}
http {
charset utf-8;
include mime.types;
default_type application/octet -stream;
#log_format main '$remote_addr - $remote_user [$time_local] "$request" '
# '$ status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for "';
#access_log logs/access.log main;
sendfile on;
tcp_nopush on;
tcp_nolay on;
#keepalive_timeout 0;
keepalive_timeout 65;
gzip on;
gzip_min_length 1000;
gzip_proxied any;
gzip_types text/plain text/css text/xml
application/x-javascript application/xml
application/atom xml text/javascript;
server {
listen 80;
server_name localhost;
charset utf-8;
#access_log ログ /host.access.log main;
location / {
root html;
indexindex.htmlindex.htm;
}
#error_page 404 /404.html;
# サーバーエラーページを静的ページ /50x.html
##error_page にリダイレクトします500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
# 127.0.0.1:80
# でリッスンする Apache に PHP スクリプトをプロキシします
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# 127.0.0.1:9000
でリッスンしている fastcgi サーバーに php スクリプトを渡します
#location ~ \.php$ {
root html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index Index.php;
#fastcgi_param script_filename /scripts$fastcgi_script_name;
# include fastcgi_params;
include fastcgi.conf;
}
# Apache のドキュメント ルート
# が nginx の 1 つの
# 場所 ~ /\ と一致する場合、.htaccess ファイルへのアクセスを拒否します。 ht {
すべて拒否;
}
}
# IP、名前、およびポートベースの構成を組み合わせて使用する別の仮想ホスト
server {
# listen 8000;
# listen somename:8080;
# server_name somename エイリアス another.alias;
# location / {
# root html;
#indexindex.htmlindex.htm;
# }
#}
# https サーバー
##server {
# listen 443;
# server_name localhost;
# ssl on;
# ssl_certificate cert.pem;
# ssl_certificate_key cert.key;
# ssl_session_timeout 5m;
# ssl_protocols sslv2 sslv3 tlsv1 ;
# ssl_ciphers high:!anull:!md5;
# ssl_prefer_server_ciphers on ;
# location / {
# root html;
#indexindex.htmlindex.htm;
# }
#}
proxy_read_timeout 200;
# の場合のみ再試行しますTornado サーバーでタイムアウトではなく通信エラーが発生しました
# (すべてのフロントエンドへの「死のクエリ」
# の伝播を避けるため)
proxy_next_upstream エラー;
proxy_set_header x-scheme $scheme;
proxy_set_header x-real-ip $remote_addr;
proxy_set_header host $host;
proxy_set_header x-forwarded-for $ proxy_add_x_forwarded_for;
#仮想ホスト ファイルを導入する
include /opt/web/ nginx/conf/sites/*.conf;
##6. 仮想マシン構成ファイルが保存されるディレクトリを作成します
mkdir /opt/web/nginx/conf/sites
この構成の後、新しい仮想ホストを追加する必要がある場合は、構成ファイルを nginx/conf/sites/ ディレクトリに直接追加します。
例: これで、www.jb51.net ドメイン名が作成されました
作成: /opt/ web/nginx/conf/sites/www.jb51.net.conf ファイル
の内容は次のとおりです:
コードをコピーします コードは次のとおりです。
server {
listen 80;
client_max_body_size 10m;
#複数のドメイン名はスペースで区切られ、最初のドメイン名がデフォルトです
server_name www.jb51.net jb51.net ;
charset utf-8;
indexindex.htmlindex.htmindex.php;
#ルートディレクトリを定義します
set$root/var/webroot/www.jb51.net/;
# サイト パスを設定します
root $root;
# ディレクトリの参照を防止します
autoindex off;
if ($host != 'www.jb51.net') {
rewrite ^ /(.*)$ //www.jb51.net/$1 Permanent;
}
# .htaccess ファイルが要求されないようにします
location ~ /\.ht {
deny all;
}
error_page 404 /404.html;
indexindex.htmlindex.htm;
location/uploads/ {
alias /data/webroot/www.jb51.net/uploads/;
}
try_files $uri @uwsgi;
location @uwsgi{
# 他のリクエストを uwsgi に転送する
include uwsgi_params;
uwsgi_pass unix:/tmp/360ito_uwsgi.sock;
proxy_set_header x-real-ip $remote_addr;
proxy_set_header host $host;
proxy_set_header x-forwarded-for $proxy_add_x_forwarded_for;
#proxy_pass http://localhost:5000;
}
# php タイプのリクエストを fastcgi
location ~ \.php$ {
root html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_indexindex.php;
include fastcgi.conf;## に転送します。 #}
# アクセス ログ:
access_log /var /log/nginx/access.www.jb51.net.log;
# .htaccess 書き換えファイルをロードします。ここでは変数パスがサポートされていないことに注意してください。
# は include $root/www.jb51.net/.htaccess;
# include /var/webroot/www.jb51.net/.htaccess;
# のように記述することはできません ドメイン名ジャンプが有効な場合、アクセス エラーが発生すると、他のドメイン名は自動的に www.jb51.net にジャンプします
# ここで私が言いたいのは、ジャンプはアクセス エラーが発生した場合にのみ発生するため、ここでは 301 リダイレクトを実装できないことに注意してください。 !
server_name_in_redirect on;
}
cd /usr /local/src/
wget http://cn.php.net/get/php-5.3.14.tar.bz2/from/this/mirror
tar xjvf php-5.3 .14.tar.bz2
cd php-5.3.14
debian: # apt-get install autoconf2.13
export php_autoconf="/usr/bin/autoconf-2.13"
# debian:
export php_autoconf="/usr/ bin/autoconf2.13"
が表示されれば成功です。
php をコンパイルしてインストールします
--prefix=/opt/web/php \
--with -config-file-path=/opt/web/php/etc \
--with-config-file-scan-dir=/opt/web/php/etc/conf.d \
--enable -fpm \
--with-fpm-user=www \
--with-fpm-group=www \
--with-mysql=/opt/db/percona- server-5.5.14 -rel20.5 \
--with-mysqli=/opt/db/percona-server-5.5.14-rel20.5/bin/mysql_config \
--with-iconv-dir \
- -with-freetype-dir \
--with-jpeg-dir \
--with-png-dir \
--with-zlib \
--with- libxml-dir \
--enable-xml \
--enable-mbstring \
--with-gd \
--enable-gd-native-ttf \
--with -openssl \
--enable-inline-optimization
make && make install
cp php.ini-production /opt/web/php/etc/php.ini
cd /opt/web/ php/etc
cp php-fpm.conf.default php-fpm.conf
を削除します。
error_log = log/php-fpm.log
log_level = Notice
listen = 127.0.0.1:9000
listen.allowed_clients = 127.0.0.1
listen.owner = www
listen.group = www
listen.mode = 0666
user = www
グループ = www
pm = 動的
pm.max_children = 50
pm.start_servers = 5
pm.min_spare_servers = 5
pm.max_spare_servers = 35
pm.max_requests = 500
env[ホスト名] = $hostname
env[パス] = /usr/local/bin:/usr/bin:/bin
env[tmp] = /tmp
env[tmpdir] = / tmp
env[temp] = / tmp
10。入力:http://php.jb51.net/tz.php
成功すれば、phpinfo()による情報出力を見ることができます
以上がCentOS環境にnginx、php、仮想ホストをデプロイする方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。