Nginx : インストール2023/11/17 |
高速 HTTP/Proxy サーバーソフトウェア [Nginx] (エンジンエックス) による Web サーバーのインストールと設定です。
|
|
[1] | Nginx をインストールします。 |
[root@www ~]# dnf -y install nginx
|
[2] | Nginx の基本設定です。 |
[root@www ~]#
vi /etc/nginx/nginx.conf # 40行目 : サーバー名を自身のものに変更 server_name www.srv.world ;
systemctl enable --now nginx |
[3] | Firewalld を有効にしている場合は、HTTP サービスの許可が必要です。HTTP は [80/TCP] を使用します。 |
[root@www ~]# firewall-cmd --add-service=http success [root@www ~]# firewall-cmd --runtime-to-permanent success |
[4] | 任意のクライアントコンピューターで Web ブラウザーを起動し、デフォルトページにアクセスして動作確認します。以下のようなページが表示されれば OK です。 |
Sponsored Link |