AlmaLinux8.4にnginxをインストールする
1.有効バージョンnginxを確認
# dnf info nginx
2.nginxをインストール
# dnf -y install nginx
バージョンを確認
# nginx -v
nginx version: nginx/1.14.1
3.基本設定
41行目 サーバー名を変更 修正前 server_name _; 修正後 server_name test.arkgame.com;
4.nginxの自動起動設定
# systemctl enable --now nginx Created symlink /etc/systemd/system/multi-user.target.wants/nginx.service → /usr/lib/systemd/system/nginx.service.
5.httpサービスを許可
# firewall-cmd --add-service=http success # firewall-cmd --runtime-to-permanent success
6.動作確認
http://192.168.229.130/
「Welcome to nginx on AlmaLinux!」が表示されます