Nginx 학습 노트 (9) 프로필 상세 설명

6179 단어 nginx
프로필 상세 설명
몇 달 동안 일 을 했 는데 백 스테이지 개발 을 시작 해 야 하기 때문에 nginx 와 접촉 하 는 것 을 피 할 수 없다. 예전 에는 간단하게 사 용 했 을 뿐 내부 모듈 의 구체 적 인 실현 을 더 많이 분석 하고 배 치 를 위해 배치 방법 을 더욱 파악 해 야 한다.
전역 설정 정보
#nginx worker            
user nobody nobody;

#nginx worker worker_processes
4;

# , debug、info、notice、warn、error、crit( Python logging) error_log logs
/error.log notice;

# id pid logs
/nginx.pid;

# nginx worker_rlimit_nofile
65535;

# nginx events{ use epoll; #linux worker_connections
65536;# worker }

  worker_rlimit_nofile: 이론 적 값 은 최대 열 린 파일 수 (ulimit - n) 와 nginx 프로 세 스 수 를 제외 해 야 합 니 다. 그러나 nginx 배분 요청 이 고 르 지 않 기 때문에 ulimit - n 의 값 과 일치 하 는 것 이 좋 습 니 다.
  worker_connetions: 모든 작업 프로 세 스 가 최대 동시 연결 수 를 허용 합 니 다. (그렇다면 워 커 rlimit nofile 보다 작 아야 하 는 것 아 닙 니까?)
(nginx 최대 연결 수: Maxclient = work processes * worker connections)
가상 호스트 설정
server {
    listen          80;
    server_name     domain.com *.domain.com;
    return          301 $scheme://www.domain.com$request_uri;
 }
 
server {
    listen          80;
    server_name     www.domain.com;
 
    index           index.html;
    root            /home/domain.com;
}

위의 설정 정보 에서 server 는 가상 호스트 를 대표 하고 server가상 호스트 와 일치 하 는 도 메 인 이름 을 설정 하여 서로 다른 요청 내용 을 처리 할 수 있 습 니 다. 즉, 감청 포트 listen 은 같 습 니 다 ~
  • 첫 번 째 server 에서 이 server 는 domain. com 과 그 하위 도 메 인 이름 의 요청 만 일치 합 니 다.
  • 두 번 째 server 에 서 는 www. domain. com 의 도 메 인 이름 요청 만 일치 합 니 다.
  • server {
        listen          80 default_server;
     
        index           index.html;
        root            /var/www/default;
    }

     
    Nginx 의 가상 호스트 는 HTTP 요청 의 Host 값 을 통 해 해당 하 는 가상 호스트 설정 을 찾 습 니 다. 찾 을 수 없다 면?그러면 Nginx 는 지 정 된 default 로 요청 을 보 냅 니 다.server 의 노드 를 처리 합 니 다. default 로 지정 되 지 않 았 다 면server 는 localhost 의 노드 로 달 려 갑 니 다. localhost 의 노드 가 없 으 면 404 할 수 밖 에 없습니다.
    http 설정
    http {
    # mime include mime.types;
    # default_type application
    /octet-stream; #log_format main '$remote_addr - $remote_user [$time_local] "$request" ' # '$status $body_bytes_sent "$http_referer" ' # '"$http_user_agent" "$http_x_forwarded_for"'; #access_log logs/access.log main; sendfile on; #tcp_nopush on;
       # ,
    keepalive_timeout 65; #gzip on;     
    # server {
    # listen
    80;
    # , server_name localhost; #charset utf-8
    ;# #access_log logs/host.access.log main; location / { root html; index index.html index.htm;

    #
    allow 192.168.1.0/24;
    deny all; } #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; } }

    좋은 웹페이지 즐겨찾기