centos 버 전 아 리 클 라 우 드 서버 설치 naginx 및 관련 설정

최근 에 아 리 클 라 우 드 서버 를 만 들 었 습 니 다. 업무 수행 에 필요 한 naginx 를 설치 해 야 하기 때문에 특별히 정리 해서 친구 들 에 게 공유 하고 도움 이 되 었 으 면 좋 겠 습 니 다!잔말 말고 본론 으로 들 어가.내 가 여기 서 직접 사용 하 는 것 은 명령 으로 설치 하 는 것 이다.다음 과 같다.
/**
 *   :Linux   Nginx
 *     :
 * 2017 04 30   17:13:00
 */


Nginx Linux                ,          :
    
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
wget http://nginx.org/download/nginx-1.2.0.tar.gz
tar zxvf nginx-1.2.0.tar.gz
cd nginx-1.2.0
./configure
make
sudo make install
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~


          ,Nginx       /usr/local/nginx   。
    
  nginx  
    
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/usr/local/nginx/sbin/nginx -v
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

      nginx  ,  
sudo /usr/local/nginx/sbin/nginx
 
    
    
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/usr/local/nginx/sbin/nginx -s  reload 
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

이 서버 설치 가 완료 되 었 습 니 다. 다음은 naginx. conf 파일 의 설정 을 살 펴 보 겠 습 니 다. 관심 이 있 으 시 면 naginx, 튜 토리 얼 주 소 를 알 아 보 세 요.http://www.cnblogs.com/jingmoxukong/p/5945200.html
직접 설정 파일 올 리 기:
명령 을 통과 하 다
vin naginx.conf   #보기 페이지 에 들 어가 기
그리고 i 를 입력 하여 편집 합 니 다.
구체 적 인 설정 은 아래 설정 파일 을 참조 할 수 있 습 니 다.
###########            。#################
#user administrator administrators;  #       ,   nobody nobody。
#worker_processes 2;  #        ,   1
#pid /nginx/pid/nginx.pid;   #  nginx          
error_log log/error.log debug;  #      ,  。           ,http ,server ,     :debug|info|notice|warn|error|crit|alert|emerg
events {
    accept_mutex on;   #         ,        ,   on
    multi_accept on;  #                  ,   off
    #use epoll;      #      ,select|poll|kqueue|epoll|resig|/dev/poll|eventport
    worker_connections  1024;    #     ,   512
}
http {
    include       mime.types;   #             
    default_type  application/octet-stream; #      ,   text/plain
    #access_log off; #          
    log_format myFormat '$remote_addr–$remote_user [$time_local] $request $status $body_bytes_sent $http_referer $http_user_agent $http_x_forwarded_for'; #     
    access_log log/access.log myFormat;  #combined         
    sendfile on;   #  sendfile      ,   off,   http ,server ,location 。
    sendfile_max_chunk 100k;  #                    ,   0,     。
    keepalive_timeout 65;  #      ,   75s,   http,server,location 。
    
    #          
    upstream myserver {   
      server 127.0.0.1:8080;
      server 120.25.167.100:8080 backup;  
    }
    server {
        keepalive_requests 120; #         。
        listen       80;   #    
        server_name  localhost;   #           
        location  ~*^.+$ {       #   url  ,    ,~      ,~*       ,        \   
           #root path;  #           
           #index index.html index.htm;  #     
           proxy_pass  http://myserver;  #    mysvr         
           #deny 127.0.0.1;  #   ip
           #allow 192.168.10.2; #   ip           
        } 
    }
   #error_page 404 https://www.baidu.com; #     
}
 
   
  
        ,  Esc   ,  shift+:             wq!       。 
  

, , 。 , 。


, :http://www.cnblogs.com/knowledgesea/p/5175711.html nagnix 。

 
 

좋은 웹페이지 즐겨찾기