아 리 클 라 우 드 ECS CentOS 7 컴 파일 설치 nginx
# curl -O http://nginx.org/download/nginx-1.16.1.tar.gz
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 1008k 100 1008k 0 0 11119 0 0:01:32 0:01:32 --:--:-- 12160
2. 압축 해제 파일
# tar -xvf nginx-1.16.1.tar.gz
3. 설치 필수 라 이브 러 리 pcre - devel, zlib - devel, openssl - devel
# yum install pcre-devel zlib-devel openssl-devel -y
설명:
pcre - devel: 정규 표현 식 라 이브 러 리
zlib - devel: gzip 압축 라 이브 러 리
openssl - devel: openssl 개발 라 이브 러 리, ssl 인증서 지원 에 사용
4. 원본 디 렉 터 리 에 들 어가 환경 을 설정 하고 https 지원 을 엽 니 다.
# cd nginx-1.16.1
# ./configure --with-http_ssl_module
...
creating objs/Makefile
Configuration summary
+ using system PCRE library
+ using system OpenSSL library
+ using system zlib library
nginx path prefix: "/usr/local/nginx"
nginx binary file: "/usr/local/nginx/sbin/nginx"
nginx modules path: "/usr/local/nginx/modules"
nginx configuration prefix: "/usr/local/nginx/conf"
nginx configuration file: "/usr/local/nginx/conf/nginx.conf"
nginx pid file: "/usr/local/nginx/logs/nginx.pid"
nginx error log file: "/usr/local/nginx/logs/error.log"
nginx http access log file: "/usr/local/nginx/logs/access.log"
nginx http client request body temporary files: "client_body_temp"
nginx http proxy temporary files: "proxy_temp"
nginx http fastcgi temporary files: "fastcgi_temp"
nginx http uwsgi temporary files: "uwsgi_temp"
nginx http scgi temporary files: "scgi_temp"
5. 컴 파일 및 설치
# make && make install
6. nginx 프로필 테스트
# vim /usr/local/nginx/conf/nginx.conf
( , )
# /usr/local/nginx/sbin/nginx -t
7. nginx 시작
# /usr/local/nginx/sbin/nginx
8. nginx 접근 로그 참조
# tail -f /usr/local/nginx/logs/access.log
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
CentOS 7에서 OpenLDAP 서버 설치 및 구성LDAP(Lightweight Directory Access Protocol)는 ID와 개체를 쉽게 관리할 수 있는 디렉터리 서비스입니다. Windows 세계에서 서버는 일반적으로 Active Directory입니다...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.