Nginx 설정 방법 (Nginx + Flask)

남방 사람 으로서 나 는 매일 목욕 을 하고 일년 사계절 쉬 지 않 는 다.심지어 내 가 베 이 징 에서 공부 한 7 년 동안 이렇게 왔 다.목욕 은 매우 편안 한 일이 다. 너 는 완전히 긴장 을 풀 고 음악 을 들 으 며 작은 노래 를 흥 얼 거 리 며 얼마나 즐 거 운 가.아 키 미 드 도 목욕 할 때 부력 을 발견 해 목욕 은 좋 은 일이 다!
오늘 목욕 을 할 때 나 는 nginx 의 역방향 대리 가 무엇 인지 갑자기 깨 달 았 다. 그래서 나 는 밤새 nginx 를 어떻게 배치 하 는 지 를 쾅 쾅 거 리 며 연구 했다.이하 건어물!
 
1. 설치 (ubuntu 16.04)
(1) 다운로드
wget wget http://nginx.org/download/nginx-1.17.8.tar.gz(버 전 자세 한 내용 은 nginx 홈 페이지 로 이동 하 십시오)
(2) 설치 환경
sh:apt update
sh:apt install  libpcre3 libpcre3-dev openssl libssl-dev zlib*
(3) 압축 풀기 (내 경로 / opt / nginx /)
tar -zxf nginx-1.17.8.tar.gz
(4) 컴 파일
cd nginx-1.17.8
./configure --prefix=./main --sbin-path=/usr/local/nginx/sbin/nginx
make & make install
(5) 프로필
cd main/conf & vim my_conf.conf
설정 nginx
 

#user  nobody;
worker_processes  2;

error_log  logs/error.log;
error_log  logs/error.log  notice;
error_log  logs/error.log  info;

pid        logs/nginx.pid;


events {
    use epoll;
    worker_connections  1024;
}


http {
    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  0;
    keepalive_timeout  65;

    #gzip  on;
    gzip on;
    #              gzip    , K   
    gzip_min_length 2k;
    #  32 * 4K   
    gzip_buffers 32 4k;
    gzip_http_version 1.0;
    #  gzip    ,                 ,             
    gzip_comp_level 3;
    #    
    gzip_types text/plain text/css text/javascript application/json application/javascript application/x-javascript application/xml;
    gzip_vary on;

    #http_proxy
    client_max_body_size 10m;
    client_body_buffer_size 128k;
    proxy_connect_timeout 60;
    proxy_send_timeout 60;
    proxy_read_timeout 60;
    proxy_buffer_size 4k;
    proxy_buffers 4 32k;
    proxy_busy_buffers_size 64k;
    proxy_temp_file_write_size 64k;
    proxy_temp_path /opt/nginx/nginx-1.17.8/main/logs 1 2;


    upstream myservers {
        #         
        zone upstream_dynamic 64k;

        #weight:  
        server 172.26.91.177:2331      weight=5;

        #fail_timeout:  5s(  10s)     ,slow_start:30s          
        #server backend2.example.com:8080 fail_timeout=5s slow_start=30s;

        #      3 (    10s)
        #server 192.0.2.1                 max_fails=3;

        #    backend3.example.com   ip   
        #server backend3.example.com      resolve;

        #     
        server 172.26.91.178:2332  backup;
        #server backup2.example.com:8080  backup;
        }

    upstream myservers2 {
        #         
        zone upstream_dynamic 64k;

        #weight:  
        server 172.26.91.177:2333      weight=5;

        #fail_timeout:  5s(  10s)     ,slow_start:30s          
        #server backend2.example.com:8080 fail_timeout=5s slow_start=30s;

        #      3 (    10s)
        #server 192.0.2.1                 max_fails=3;

        #    backend3.example.com   ip   
        #server backend3.example.com      resolve;

        #     
        server 172.26.91.178:2334  backup;
        #server backup2.example.com:8080  backup;
        }

    server {
        listen       80;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location /web {
            proxy_pass http://myservers;
        }

        location /test {
            proxy_pass http://myservers2;
        }

        #
        #location /test {
        #    root   html;
        #    index  index.html index.htm;
        #}

        #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;
        }

        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ \.php$ {
        #    proxy_pass   http://127.0.0.1;
        #}

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        #location ~ \.php$ {
        #    root           html;
        #    fastcgi_pass   127.0.0.1:9000;
        #    fastcgi_index  index.php;
        #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
        #    include        fastcgi_params;
        #}

        # deny access to .htaccess files, if Apache's document root
        # concurs with nginx's one
        #
        #location ~ /\.ht {
        #    deny  all;
        #}
    }





    # another virtual host using mix of IP-, name-, and port-based configuration
    #
    #server {
    #    listen       8000;
    #    listen       somename:8080;
    #    server_name  somename  alias  another.alias;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}


    # HTTPS server
    #
    #server {
    #    listen       443 ssl;
    #    server_name  localhost;

    #    ssl_certificate      cert.pem;
    #    ssl_certificate_key  cert.key;

    #    ssl_session_cache    shared:SSL:1m;
    #    ssl_session_timeout  5m;

    #    ssl_ciphers  HIGH:!aNULL:!MD5;
    #    ssl_prefer_server_ciphers  on;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}

}

이상 의 설정 은 제 가 하나씩 설명 하 겠 습 니 다. 여러분 은 나중에 nginx 를 설정 하면 상기 에 따라 수정 할 수 있 습 니 다.
저 는 두 개의 서버 가 있 는데 각각 172.26.91.177 과 172.26.91.178 입 니 다. 그 중에서 각 ip 은 두 개의 서 비 스 를 열 었 습 니 다.
(1):http://172.26.91.177:2331/web1             화해시키다       http://172.26.91.177:2333/test1  ,각각 두 가지 유형의 서 비 스 를 모 의 하 다.
(2):http://172.26.91.178:2332/web1             화해시키다       http://172.26.91.178:2334/test1  ,각각 177 의 예비 기계 로 삼다
 
1、worker_processes
프로 세 스 수, nginx 가 작업 을 처리 할 때 호출 하 는 프로 세 스 수, 이론 적 으로 큰 긍정 속도 가 빨 라 야 합 니 다.
2、error_log
로그 이름과 경로
3、pid
프로 세 스 파일
4、events
(1)use epoll
epoll 일괄 처리 방법 사용 하기
(2)worker_connections 1024
최대 연결 수
(3)multi_accept on
                

5、http
(1)include     mime.types
MIME. type 설명
(2)default_type   application/octet-stream
일반 파일 흐름
(3)sendfile   on
고 효율 파일 전송 모드 열기
(4)keepalive_timeout 60
요청 시간 초과
(5) 압축
gzip on;
#              gzip    , K   
gzip_min_length 2k;
#  32 * 4K   
gzip_buffers 32 4k;
#    
gzip_http_version 1.0;
#  gzip    ,                 ,             
gzip_comp_level 3;
#    
gzip_types text/plain text/css text/javascript application/json application/javascript application/x-javascript application/xml;
#             
gzip_vary on;

(6) 대리 (글 자 를 보고 의 미 를 안다...)
client_max_body_size 10m;
client_body_buffer_size 128k;
proxy_connect_timeout 60;
proxy_send_timeout 60;
proxy_read_timeout 60;
proxy_buffer_size 4k;
proxy_buffers 4 32k;
proxy_busy_buffers_size 64k;
proxy_temp_file_write_size 64k;
proxy_temp_path /opt/nginx/nginx-1.17.8/main/logs 1 2;

(7) 부하 균형 핵심 설정 1 (서버 설정)
upstream myservers {
        #         
        zone upstream_dynamic 64k;

        #weight:  
        server 172.26.91.177:2331      weight=5;

        #fail_timeout:  5s(  10s)     ,slow_start:30s          
        #server backend2.example.com:8080 fail_timeout=5s slow_start=30s;

        #      3 (    10s)
        #server 192.0.2.1                 max_fails=3;

        #    backend3.example.com   ip   
        #server backend3.example.com      resolve;

        #     
        server 172.26.91.178:2332  backup;
        #server backup2.example.com:8080  backup;
        }

    upstream myservers2 {
        #         
        zone upstream_dynamic 64k;

        #weight:  
        server 172.26.91.177:2333      weight=5;

        #fail_timeout:  5s(  10s)     ,slow_start:30s          
        #server backend2.example.com:8080 fail_timeout=5s slow_start=30s;

        #      3 (    10s)
        #server 192.0.2.1                 max_fails=3;

        #    backend3.example.com   ip   
        #server backend3.example.com      resolve;

        #     
        server 172.26.91.178:2334  backup;
        #server backup2.example.com:8080  backup;
        }

1) upstream 성명 을 설정 합 니 다. my server 사용자 정의 별명 은 설정 (서비스) 의 이름 을 대표 합 니 다.
2)zone upstream_dynamic 64k
공유 메모리 크기
3) 나머지 는 주석 비고 참조
(8) 부하 균형 핵심 설정 2 (프 록 시 규칙)
server {
        listen       80;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location /web {
            proxy_pass http://myservers;
        }

        location /test {
            proxy_pass http://myservers2;
        }

        #
        #location /test {
        #    root   html;
        #    index  index.html index.htm;
        #}

        #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;
        }

        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ \.php$ {
        #    proxy_pass   http://127.0.0.1;
        #}

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        #location ~ \.php$ {
        #    root           html;
        #    fastcgi_pass   127.0.0.1:9000;
        #    fastcgi_index  index.php;
        #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
        #    include        fastcgi_params;
        #}

        # deny access to .htaccess files, if Apache's document root
        # concurs with nginx's one
        #
        #location ~ /\.ht {
        #    deny  all;
        #}
    }

위의 두 블록 으로 나 누 는 설정 은 다음 과 같은 요 구 를 달성 하려 고 합 니 다.
홈 서버 (177), 두 개의 서비스 가 있 습 니 다. 요청 한 url 은 각각:
http://172.26.91.177:2331/web1                    http://172.26.91.177:2333/test1
웹 1 하위 경 로 를 방문 하면 nginx 는 2331 포트 로 전송 하고 test 1 하위 경 로 를 방문 하면 2333 포트 로 전송 합 니 다.
그리고 상기 서비스 가 지연 되면,
http://172.26.91.178:2332/web1                    http://172.26.91.178:2334/test1  
각각 177 의 예비 기계 로 삼다
이렇게 하면 백업 과 부하 균형 을 모두 설정 하고 용기 편성 에 맞 춰 압력 없 이 높 은 병행 웹 서 비 스 를 구축 할 수 있 습 니 다!
이러한 nginx 템 플 릿 은 할 수 있 습 니 다:
서 비 스 는 같은 기계 의 같은 포트 에 있 는 다른 하위 도 메 인 이름 으로 전 송 됩 니 다.
서 비 스 는 같은 기계 의 다른 포트 에 있 는 다른 하위 도 메 인 이름 으로 전 송 됩 니 다.
서 비 스 는 같은 기계 의 다른 포트 의 같은 하위 도 메 인 으로 전 송 됩 니 다.
서 비 스 는 서로 다른 기계 의 같은 포트 에 있 는 서로 다른 하위 도 메 인 이름 으로 전 송 됩 니 다.
서 비 스 는 서로 다른 기계 의 서로 다른 포트 의 서로 다른 하위 도 메 인 이름 으로 전송 된다.
서 비 스 는 서로 다른 기기 의 서로 다른 포트 의 같은 하위 도 메 인 으로 전 송 됩 니 다.
서 비 스 는 서로 다른 기계 의 같은 포트 의 같은 하위 도 메 인 으로 전 송 됩 니 다.
대단 하지 않다 고 말 해 봐!!
 
nginx 상용 명령
(1) 시작 (프로필 지정, 추천)
nginx -c xxxxx/my.conf
(2) 다시 불 러 오기 (일반적으로 파일 수정 후)
nginx -s reload
(3) 닫 기
nginx -s quit

좋은 웹페이지 즐겨찾기