Nginx 미들웨어 웹 서비스 설치
2293 단어 중간 부품nginxweb클 러 스 터 구축 문서
pcre
[root@lnmp01 ~]# rpm -qa pcre pcre-devel
[root@lnmp01 ~]# yum install -y openssl openssl-devel
[root@lnmp01 ~]# rpm -qa pcre pcre-devel
pcre-devel-7.8-7.el6.x86_64
pcre-7.8-7.el6.x86_64
nginx-1.6.3
[root@lnmp01 ~]# rpm -qa nginx
[root@lnmp01 ~]# mkdir /home/lufeng/tools -p
[root@lnmp01 ~]# cd /home/lufeng/tools/
[root@lnmp01 tools]# wget -q http://nginx.org/download/nginx-1.6.3.tar.gz
[root@lnmp01 tools]# tar xf nginx-1.6.3.tar.gz
[root@lnmp01 tools]# cd nginx-1.6.3
[root@lnmp01 nginx-1.6.3]# useradd nginx -s /sbin/nologin -M
[root@lnmp01 nginx-1.6.3]# ./configure --prefix=/application/nginx-1.6.3 --user=nginx --group=nginx --with-http_ssl_module --with-http_stub_status_module
[root@lnmp01 nginx-1.6.3]# make
[root@lnmp01 nginx-1.6.3]# make install
[root@lnmp01 tools]# ln -s /application/nginx-1.6.3/ /application/nginx
nginx
[root@lnmp01 tools]# /application/nginx/sbin/nginx -t
nginx: the configuration file /application/nginx-1.6.3/conf/nginx.conf syntax is ok
nginx: configuration file /application/nginx-1.6.3/conf/nginx.conf test is successful
[root@lnmp01 tools]# /application/nginx/sbin/nginx
[root@lnmp01 tools]# netstat -lntup|grep nginx
[root@lnmp01 tools]# wget 127.0.0.1
[root@lnmp01 tools]# curl 127.0.0.1
:
[root@lnmp01 conf]# cat nginx.conf
worker_processes 1;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
include extra/www.conf;
include extra/blog.conf;
include extra/bbs.conf;
}
[root@lnmp01 conf]# cat ./extra/www.conf
server {
listen 80;
server_name www.lufeng.com;
location / {
root html/www;
index index.html index.html;
}
}
[root@lnmp01 conf]# cat ./extra/bbs.conf
server {
listen 80;
server_name bbs.lufeng.com;
location / {
root html/bbs;
index index.html index.html;
}
}
[root@lnmp01 conf]# cat ./extra/blog.conf
server {
listen 80;
server_name blog.lufeng.com;
location / {
root html/blog;
index index.html index.html;
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
nginx 플러스 lua 실현설치 의존 항목 설치 nginx 와 의존 항목 다운로드 lua 모듈 설치 성공 여부 테스트 0. lua 스 크 립 트 를 저장 하 는 폴 더 를 만 듭 니 다. 1. mydata. lua 만 들 기 2. nginx....
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.