デプロイ時間: 2012-07-24
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. www を追加します。 user for Execute nginx
コードをコピーしますコードは次のとおりです:
useradd -m -r -s /sbin/nologin -d /opt/web/ www
2. 一時ディレクトリの作成
コードをコピーするコードは次のとおりです:
mkdir -p /var/tmp/nginx/client/
mkdir -p /var /tmp/nginx/proxy/
mkdir -p /var/tmp/nginx/fcgi/
3. nginx ソース コードの最新の安定バージョンをダウンロードします
コード コードは次のとおりです。
cd /usr/local/src/
wget http://nginx.org/download/nginx-1.2.2.tar.gz
4. 解凍、コンパイル、インストール
コードをコピーします。コードは次のとおりです。
tar vxzf nginx-1.2.2.tar.gz
cd nginx-1.2.2 /
./configure \
--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 \
--http_ssl_module 付き \
--http_stub_status_module 付き \
--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
5. nginx を設定します
コードをコピーしますコードは次のとおりです:
vim /opt/web/nginx/conf/nginx.conf
# 起動ユーザーを指定します:
user www www;
# プロセス数、nginx 筆者は1つで十分だと考えており、アクセス数に応じて
worker_processes 1;
# を修正します。エラー ログ:
#error_log logs/error.log Notice;
#error_log logs/error.log info;
error_log /var/log/nginx/error.default.log;
pid / opt/web/nginx/nginx.pid;
events {
epoll を使用;
worker_connections 1024;
}
http {
charset utf-8;
MIME を含めます。タイプ;
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 logs/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;
}
# PHP スクリプトを Apache リスニングにプロキシします127.0.0.1:80
##location ~ \.php$ {
# proxy_pass http:///127.0.0.1;
#}
# php スクリプトを fastcgi サーバー リスニングに渡します127.0.0.1:9000
#location ~ \.php$ {
root html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_indexindex.php;
#fastcgi_param script_filename /scripts$fastcgi_script_name;
#include fastcgi_params;
include fastcgi.conf;
}
# Apache のドキュメント ルート
# が nginx のドキュメント ルートと一致する場合、.htaccess ファイルへのアクセスを拒否します
#location ~ /\.ht {
すべて拒否;
}
}
# IP、名前、ポートベースの構成を組み合わせて使用する別の仮想ホスト
##server {
# listen 8000;
# listen somename:8080;
# server_name somename エイリアス another.alias;
# location / {
# root html;
# インデックスindex.htmlindex.htm;
# }
#}
# https サーバー
##サーバー {
# listen 443;
# サーバー名 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;
# Index Index.html Index.htm;
# }
#}
proxy_read_timeout 200;
# トルネード サーバーでタイムアウトではなく、通信エラーが発生した場合にのみ再試行します
# (「死のクエリ」
# がすべてのフロントエンドに伝播するのを避けるため)
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 サイトの他の関連記事を参照してください。