Rocky Linux 에서 nginx 설치 방법을 기록해 두고자 한다.root 사용자로 nginx 를 설치하고, nginx.conf 를 수정후 systemctl 로 서비스 등록만 하면 된다. - nginx 설치# dnf install nginx - nginx.conf 수정# cd /etc/nginx# vi nginx.conf# For more information on configuration, see:# * Official English Documentation: http://nginx.org/en/docs/# * Official Russian Documentation: http://nginx.org/ru/docs/user nginx;worker_processes 8;error_log /var/..