PCRE
-
EC2 - NGINX 빌드하기 [2]AWS 2021. 1. 24. 22:45
1. apt 업데이트후, gcc, make를 설치한다. (nginx를 빌드할때 사용된다.) apt-get update apt install gcc apt-get install make 2. 먼저 설치하고 싶은 nginx 버젼을 다운받는다. http://nginx.org/en/download.html nginx: download nginx.org wget http://nginx.org/download/nginx-1.18.0.tar.gz tar -xvf nginx-1.18.0.tar.gz 3. 압출을 푼 폴더에 들어가면 configure이라는 프로그램이 있다. 이걸 사용해서 설정을 해야된다. mkdir /root/workspace/nginx ./configure --prefix=/root/workspace/..