AlmaLinux9.2 nginx をインストールする手順
環境
# cat/etc/redhat-release
AlmaLinux release 9.2 (Turquoise Kodkod)
操作方法
1.nginx をインストールします
# dnf -y install nginx
2.nginxの基本設定を行います
# vi /etc/nginx/nginx.conf
#41行目 : サーバー名を自身のものに変更 server_name test.arkgame.com;
3.nginxのバージョンを確認します
# nginx -V nginx version: nginx/1.20.1
4.nginxを起動します
# systemctl enable --now nginx Created symlink /etc/systemd/system/multi-user.target.wants/nginx.service → /usr/lib/systemd/system/nginx.service.
5. Firewalld を有効にしている場合は、HTTP サービスの許可が必要です。HTTP は [80/TCP] を使用します。
# firewall-cmd --add-service=http success # firewall-cmd --runtime-to-permanent success
6.動作確認
Web ブラウザーを起動し、デフォルトページにアクセスして動作確認します。
例http://192.168.213.130/
「AlmaLinux Test Page」が表示されます。