docker (5): Mac docker 사용자 정의 nginx 설정 패키지 nginx 미 러

8510 단어 macdocker
1. 미 러 라 이브 러 리 기반 nginx 설정 을 수정 하고 Dockerfile 을 작성 합 니 다.
from hub.c.163.com/library/nginx:latest
MAINTAINER Jinx----
COPY default.conf /etc/nginx/conf.d/default.conf
COPY proxy.conf /etc/nginx/proxy.conf
COPY nginx.conf /etc/nginx/nginx.conf

지정 한 마 운 트 디 렉 터 리 에 들 어가 복사 할 파일 은 이 디 렉 터 리 에 proxy. conf 는 제 가 추가 한 내용 입 니 다. 다음 과 같 습 니 다.
proxy_set_header        Host $host;
proxy_set_header        X-Real-IP $remote_addr;

초기 미 러 의 nginx. conf 내용 은 다음 과 같 습 니 다.
user  nginx;
worker_processes  1;

error_log  /var/log/nginx/error.log warn;
pid        /var/run/nginx.pid;


events {
    worker_connections  1024;
}


http {
    include       /etc/nginx/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  /var/log/nginx/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    keepalive_timeout  65;

    #gzip  on;

    include /etc/nginx/conf.d/*.conf;
}

내 가 수정 한 내용 은 다음 과 같다.
user  nginx;
worker_processes  1;

error_log  /var/log/nginx/error.log warn;
pid        /var/run/nginx.pid;

worker_rlimit_nofile 1024;
events {
    worker_connections  1024;
}


http {
    include       /etc/nginx/mime.types;
    include       proxy.conf;
    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  /var/log/nginx/access.log  main;


    server_tokens off;
    sendfile        on;
    tcp_nopush     on;
    server_names_hash_bucket_size 256;
    client_header_buffer_size 256k;

    large_client_header_buffers 4 256k;
    client_body_buffer_size 256k;
    client_header_timeout     3m;
    client_body_timeout 3m;
    send_timeout             3m;

    client_max_body_size 50m;
    keepalive_timeout  120;
    fastcgi_intercept_errors on;
    fastcgi_connect_timeout 300;
    fastcgi_send_timeout 300;
    fastcgi_read_timeout 300;

    fastcgi_buffer_size 128k;
    fastcgi_buffers 4 256k;
    fastcgi_busy_buffers_size 256k;
    fastcgi_temp_file_write_size 256k;

    gzip on;
    gzip_min_length  1k;
    gzip_buffers     4 16k;
    gzip_http_version 1.0;
    gzip_comp_level 2;
    gzip_types       text/plain application/x-javascript text/css application/xml;
    gzip_vary on;

    include /etc/nginx/conf.d/*.conf;
}

default. conf 는 기본 적 인 에이전트 내용 입 니 다. 구체 적 으로 다음 과 같 습 니 다.
server {

    listen       80;
    server_name  app.xx.com;

    location /{
            proxy_pass    http://139.196.15.xx:8080;
    }

    location /gtw {
            proxy_pass    http://139.196.15.xx:8020;
    }

    location /protops-admin {
        proxy_pass http://139.196.15.xx:8010;
    }
   location /vihicle_uploads {
        proxy_pass http://139.196.15.xx:8030;
    }   
    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   /usr/share/nginx/html;
    }

}

2. cd 는 이 디 렉 터 리 에 미 러 를 포장 합 니 다. (구체 적 인 설명 은 이전 편 참조)
docker build -t xx-nginx:latest .

3. 응용 프로그램 시작, 서비스 만 들 기
docker run -d -p 900:80   ID

좋은 웹페이지 즐겨찾기