CentOS 7
Sponsored Link

Nginx : インストール2015/08/18

 
高速 HTTP サーバーソフトウェア「Nginx」による Web サーバーのインストールと設定です。
[1] Nginx をインストールします。
# EPELからインストール

[root@www ~]#
yum --enablerepo=epel -y install nginx
[2] Nginx の基本設定です。
[root@www ~]#
vi /etc/nginx/nginx.conf
# 38行目:サーバー名変更

server_name
www.srv.world
;
[root@www ~]#
systemctl start nginx

[root@www ~]#
systemctl enable nginx

[3] Firewalld を有効にしている場合は、HTTPサービスの許可が必要です。なお、HTTP は 80/TCP を使用します。
[root@www ~]#
firewall-cmd --add-service=http --permanent

success
[root@www ~]#
firewall-cmd --reload

success
[4] 任意のクライアントで Web ブラウザを起動し、デフォルトページにアクセスして動作確認してください。以下のようなページが表示されれば OK です。
関連コンテンツ