centos 7 nginx 설정

5922 단어
1. nginx 공식 다운로드 1.6.2
2. 컴 파일 설치
[root@bogon nginx-1.6.2]# ./configure --prefix=/usr/local/webserver/nginx --with-http_stub_status_module --with-http_ssl_module --with-pcre=/usr/local/src/pcre-8.35 [root@bogon nginx-1.6.2]# make [root@bogon nginx-1.6.2]# make install

3. nginx 버 전 보기
[root@bogon nginx-1.6.2]# /usr/local/webserver/nginx/sbin/nginx -v


4. 전단 항목 설정

1、 /**/nginx/html
2、config

server { listen 80; server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location / { root html/ess-web/;                 #ess-web  포 장 된 프로젝트 폴 더 index. html index. htm; try files $uri $uri / index. html;       }
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html # error_page 500 502 503 504 /50x.html; location = /50x.html { root html; }
location /cors/{               #"cors" 는 가리 키 는 표지 proxy pass 입 니 다.http://192.168.10.22:8080/;  #"cors" 가 가리 키 는 IP 경로}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80 # #location ~ \.php$ { # proxy_pass http://127.0.0.1; #}
 


/usr/lib/systemd/system/nginx.service

[Unit]Description=nginxAfter=network.target [Service]Type=forkingExecStart=/usr/local/webserver/nginx/sbin/nginxExecReload=/usr/local/webserver/nginx/sbin/nginx -s reloadExecStop=/usr/local/webserver/nginx/sbin/nginx -s quitPrivateTmp=true [Install]WantedBy=multi-user.target
 

4. 567914. 특정한 서비스 작 동 설정
4. 567914. 특정한 서비스 작 동 취소 설정
어떤 서 비 스 를 닫 습 니 다.
어떤 서비스 상 태 를 조회 합 니 다.


좋은 웹페이지 즐겨찾기