nginx (centos 7) 파일 서버 구축

870 단어 linux
#!/bin/bash
yum -y  install  gcc*  zlib zlib-devel  pcre pcre-devel openssl openssl-devel

useradd -s /sbin/nologin nginx

cd /opt

wget http://139.155.34.247/nginx/nginx-1.16.0.tar.gz
wget http://139.155.34.247/conf/nginx/nginx.conf

tar -zxvf nginx-1.16.0.tar.gz

cd nginx-1.16.0

./configure --user=nginx  --group=nginx --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_sub_module  --with-http_ssl_module  --with-pcre

make && make install

ln -s /usr/local/nginx/sbin/nginx /usr/bin/   

cp /usr/local/nginx/conf/nginx.conf  /usr/local/nginx/conf/nginx.conf-bak  #    

\cp /opt/nginx.conf /usr/local/nginx/conf/nginx.conf

nginx -t

nginx

이로써
ps:  설정 파일 에서 파일 의 저장 경 로 를 가리 키 는 것 은 / usr / local / nginx / html / 아래 입 니 다. 하지만 루트 를 직접 수정 하여 다른 곳 에 저장 할 수 있 습 니 다.
수정 하기 전에 백업 하고 nginx - t 를 수정 해 주세요.

좋은 웹페이지 즐겨찾기