CentOS 6.5 컴 파일 설치 Nginx 1.8.0
yum -y install gcc gcc-c++ autoconf automake make
yum -y install zlib zlib-devel openssl
yum -y install openssl-devel pcre pcre-devel
Nginx 설치
#
wget http://nginx.org/download/nginx-1.8.0.tar.gz
#
tar zxvf nginx-1.8.0.tar.gz
cd nginx-1.8.0
#
./configure
make && make install
실행
configure
후 큰 설정 정 보 를 볼 수 있 습 니 다:nginx path prefix: "/usr/local/nginx"
nginx binary file: "/usr/local/nginx/sbin/nginx"
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"
Nginx 설정
위의 설정 정 보 를 주의 하 십시오. Nginx 의 설정 파일 은
/usr/local/nginx/conf/
디 렉 터 리 에 있 습 니 다. 이 때 /usr/local/nginx/conf/nginx.conf
파일 을 편집 하고 설정 을 수정 할 수 있 습 니 다. 이것 은 더 이상 말 하지 않 겠 습 니 다.설정 이 완료 되면
nginx -t
설정 이 올 바른 지 확인 할 수 있 습 니 다.수정 후 Nginx 를 시작 할 수 있 습 니 다:
nginx -c /usr/local/nginx/conf/nginx.conf
# nginx
ps aux | grep nginx
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Raspberry Pi OS에 Nginx&PHP를 설치하여 웹 서버를 구축웹 서비스용이 아니고, http 프로토콜 관계의 실험용이므로, 데이터베이스 서버의 인스톨은 하고 있지 않습니다. PHP는 필요 없을지도 모르지만, 일단. LAN 내의 독립 서버를 가정합니다. 그래서 보안이라든지 생각...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.