nginx 설치 썸네일형 리스트형 AMAZON Linux2 nginx 설치 #nginx 확인 yum info nginx #add nginx repo. sudo vi /etc/yumrepos.d/nginx.repo nginx.repo 파일에 복붙하기 [nginx] name=nginx repo baseurl=http://nginx.org/packages/centos/7/$basearch/ gpgcheck=0 enabled=1 #re check yum info nginx #install nginx sudo yum install nginx -y nginx sudo systemctl start nginx #start sudo systemctl stop nginx #stop sudo systemctl status nginx #status 더보기 수동으로 설치한 nginx service 에 등록 방법 1. Service 파일 생성 $ vi /usr/lib/systemd/system/nginx.service [Unit] Description=The NGINX HTTP and reverse proxy server After=syslog.target network.target remote-fs.target nss-lookup.target [Service] Type=forking PIDFile=/var/run/nginx.pid ExecStartPre=/usr/local/nginx/sbin/nginx -t ExecStart=/usr/local/nginx/sbin/nginx ExecReload=/usr/local/nginx/sbin/nginx -s reload ExecStop=/bin/kill -s QUIT $.. 더보기 이전 1 다음