Nginx (「エンジン x」) は、高性能、高同時実行性の www サービスおよびプロキシ サービス ソフトウェアをサポートするオープン ソースです。
はロシアの Igor Sysoev によって開発され、元々はロシアの大規模 Web サイト www.rambler.ru で使用されていました。
Nginx には、同時実行性が高く、システム リソースの使用量が少ないという特徴があります。
Nginx は、UNIX、Linux、DSB、Mac OS X、Solaris、および Windows オペレーティング システム上で実行できます。
高同時実行をサポート: 数万の同時接続をサポート可能
低リソース消費: 同時接続が 30,000 未満では、最初の 10 スレッドの消費量は 30,000 未満です。メモリ 200MB の 10%。
HTTPリバースプロキシと高速キャッシュ、つまりロードバランシング機能、RSノードサーバーの組み込みヘルスチェック機能が可能
Squidなどの専門的なキャッシュソフトウェアのキャッシュ機能を備えています
非同期ネットワーク I/O イベント モデルのサポート
#1.3 Nginx ソフトウェアの主な機能アプリケーションフロントエンド ビジネス データ キャッシュ サービス2. Nginx Web サービス2.1 Web サーバー アプリケーションとしての Nginx シナリオNginx を使用して HTML、JS、CSS を実行する、小さな画像、その他の静的データNginx を FastCGI と組み合わせて PHP やその他の動的プログラムを実行しますNginx は Tomcat/Resin などを組み合わせて Java 動的プログラムをサポートします2.2 Web サーバーの選択方法職場では、適切なビジネス サービス ソフトウェアを選択する必要がある: 静的ビジネス: 同時実行性の高いシナリオ、Nginx が推奨されます
3 Nginx をコンパイルしてインストールする
現在のシステム バージョンを確認します:
cat /etc/redhat-release uname -r
CentOS release 6.10 (Final) 2.6.32-754.el6.x86_64
yum メソッドを使用して pcre をインストールします:
yum -y install pcre pcre-devel rpm -qa pcre pcre-devel
結果:
pcre-devel-7.8-7.el6.x86_64pcre-7.8-7.el6.x86_64
3.2 Nginx
openssl と openssl-devel がインストールされているかどうかを確認します:
をインストールします
rpm -qa openssl openssl-devel
openssl-1.0.1e-57.el6.x86_64 openssl-devel-1.0.1e-57.el6.x86_64
nginx パッケージの保存ディレクトリを作成します:
mkdir -p /app/nginx-1.8.1 mkdir -p /server/tools cd /server/tools/
nginx ソフトウェアのダウンロード パッケージ:
公式アドレス: www.nginx.rog
wget -q http://nginx.org/download/nginx-1.8.1.tar.gz
nginx ユーザーの作成:
useradd nginx -s /sbin/nologin -M
ソフトウェア パッケージを解凍し、解凍されたディレクトリに入力します:
tar xf nginx-1.8.1.tar.gz cd nginx-1.8.1
Compile:
コンパイルされたモジュールは ./configure --help を通じて表示できます./configure --user=nginx --group=nginx --prefix=/app/nginx-1.8.1/ --with-http_stub_status_module --with-http_ssl_module
make make install
ln -s /app/nginx-1.8.1/ /app/nginx
開始前テスト:
/app/nginx/sbin/nginx -t
結果:
nginx: 設定ファイル /app/nginx-1.8.1//conf/nginx.conf 構文is oknginx: 構成ファイル /app /nginx-1.8.1//conf/nginx.conf テストは成功しましたNginx サービスを開始してポートを確認します:tcp 0 0 0 0.0.0.0:80 0.0.0.0:*curl 192.168.1.31結果:/app/nginx/sbin/nginx netstat -utpln | grep 80ログイン後にコピー
結果:4. Nginx ディレクトリ構造および設定ファイル<!DOCTYPE html> <html> <head> <title>Welcome to nginx!</title> <style> body { width: 35em; margin: 0 auto; font-family: Tahoma, Verdana, Arial, sans-serif; } </style> </head> <body> <h2>Welcome to nginx!</h2> <p>If you see this page, the nginx web server is successfully installed and working. Further configuration is required.</p> <p>For online documentation and support please refer to <a href="http://nginx.org/" rel="external nofollow" >nginx.org</a>.<br/> Commercial support is available at <a href="http://nginx.com/" rel="external nofollow" >nginx.com</a>.</p> <p><em>Thank you for using nginx.</em></p> </body> </html>ログイン後にコピー
4.1 Nginxディレクトリ構造の説明
tree /app/nginx
/app/nginx ├── client_body_temp ├── conf #nginx配置文件目录 │ ├── fastcgi.conf #fastcgi相关参数配置文件 │ ├── fastcgi.conf.default │ ├── fastcgi_params #fastcgi参数文件 │ ├── fastcgi_params.default │ ├── koi-utf │ ├── koi-win │ ├── mime.types #媒体类型 │ ├── mime.types.default │ ├── nginx.conf #Nginx主配置文件 │ ├── nginx.conf.default │ ├── scgi_params #scgi配置文件 │ ├── scgi_params.default │ ├── uwsgi_params #uwsgi配置文件 │ ├── uwsgi_params.default │ └── win-utf ├── fastcgi_temp #fastcgi临时数据文件 ├── html #默认站点目录 │ ├── 50x.html #错误页面显示文件 │ └── index.html #默认的站点首页文件 ├── logs #默认日志路径 │ ├── access.log #默认访问日志文件 │ ├── error.log #默认错误日志文件 │ └── nginx.pid #Nginx的pid文件 ├── proxy_temp #临时目录 ├── sbin #Nginx命令目录 │ ├── nginx #启动命令 │ └── nginx.old ├── scgi_temp #临时目录 └── uwsgi_temp #临时目录 9 directories, 22 files
4.2 Nginxメイン設定ファイルコメントに移動し、設定ファイルを表示します:
egrep -v "#|^$" /app/nginx/conf/nginx.conf.default
結果:
worker_processes 1; #worker进程数量 events { #事件区块开始 worker_connections 1024; #单worker进程支持的最大连接 } #事件区块结束 http { #HTTP区块开始 include mime.types; #支持的媒体类型库 default_type application/octet-stream; #默认媒体类型 sendfile on; #开启高效传输模式 keepalive_timeout 65; #连接超时 server { #server区块开始 listen 80; #服务端口,默认80 server_name localhost; #域名主机名 location / { #location区块开始 root html; #站点根目录 index index.html index.htm; #默认首页文件 } #location区块结束 error_page 500 502 503 504 /50x.html;#对应状态码及回应 location = /50x.html { #location开始回应50x.html root html; #站点目录为html } } } #HTTP区块结束
以上がNginxサービスをデプロイする方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。