docker 배치 nginx 로 부하 균형 설정

3049 단어
시스템: centos 7 은 주로 프 리 젠 테 이 션 을 하기 때문에 한 대 로 만 설정 합 니 다.
nginx 미 러 다운로드
docker pull nginx

용기 설정
docker run -di -p 80:80 --name=mynginx nginx

nginx 의 프로필 은 용기 의 / etc / nginx / 에 있 기 때문에 편리 하도록 프로필 을 복사 합 니 다.
docker cp mynginx:/etc/nginx/nginx.conf nginx.conf

vi 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;
    upstream admin {
    server ip:9091;
    server ip:9090;
}

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

upstream admin 아래 에 설 치 된 것 은 두 개의 웹 응용 프로그램 이 있 는 ip 주소 와 포트 번호 입 니 다.
아래 include / etc / nginx / conf. d / *. conf 에 주의 하 십시오.
가 져 온 프로필 이 / etc / nginx / conf. d / *. conf 에 있다 는 뜻 입 니 다.아래.
계속 / etc / nginx / conf. d / *. conf;아래 프로필 을 복사 하여 수정 합 니 다.
docker cp mynginx:/etc/nginx/conf.d/default.conf default.conf

열기 후 편집
server {
    listen       80;
    server_name  localhost;

    #charset koi8-r;
    #access_log  /var/log/nginx/host.access.log  main;

    location / {
        proxy_pass http://admin;
        root   /usr/share/nginx/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   /usr/share/nginx/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;
    #}
}

location / {} 에 proxy 추가pass http://admin;  추가 후 wq 저장
그리고 두 개의 프로필 을 복사 합 니 다.
docker cp nginx.conf mynginx:/etc/nginx/nginx.conf
docker cp default.conf mynginx:/etc/nginx/conf.d/default.conf

다시 시작 nginx
docker restart mynginx
다음 브 라 우 저 입력http://ip/url nginx 가 설정 한 두 개의 ip 주 소 를 번갈아 방문 하 는 것 을 발견 할 수 있 습 니 다.

좋은 웹페이지 즐겨찾기