Fedora32にnginxをインストールする
OSバージョンの確認
[root@localhost ~]# cat /etc/fedora-release
Fedora release 32 (Thirty Two)
nginxパッケージ情報確認
[root@localhost ~]# sudo dnf info nginx
nginxをインストール
[root@localhost ~]# sudo dnf install nginx
nginxバージョン確認
[root@localhost ~]# nginx -v
nginx version: nginx/1.20.0
nginx自動起動を設定
[root@localhost ~]# sudo systemctl enable nginx
Created symlink /etc/systemd/system/multi-user.target.wants/nginx.service → /usr/lib/systemd/system/nginx.service.
nginxを起動
[root@localhost ~]# sudo systemctl start nginx
nginx状態確認
[root@localhost ~]# sudo systemctl status nginx