具体的な手順:
(推奨チュートリアル: nginx チュートリアル)
1.「epel-release」をダウンロード
wget http://dl.Fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
2. 「epel-release」ソフトウェア パッケージをインストールします
rpm -ivh epel-release-latest-7.noarch.rpm
3. yum で nginx をインストールします
yum install nginx
4. nginx
systemctl start nginx
5. nginx を閉じます
systemctl start nginx
6. nginx 設定を更新します (nginx を再起動する必要はありません)
nginx -s reload
7. nginx 設定
設定ファイルのパス: /etc/nginx /nginx.conf
注:
(1)
upstream alias{ server localhost:port; }
ここでサービスを設定します
(2)
location / { proxy_pass http://alias; }
( 3)
(1) と (2) エイリアスは一貫性を維持します
以上がcentos7.3 での nginx のデプロイの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。