docker에서 nginx 이미지 다운로드
docker pull nginx docker images
마운팅 디렉터리 만들기
mkdir -p /data/nginx/{conf,conf.d,html,logs}
nginx, conf 구성 파일을 작성하여 폴더에 넣습니다
# for more information on configuration, see: # * official english documentation: http://nginx.org/en/docs/ # * official russian documentation: http://nginx.org/ru/docs/ user nginx; worker_processes auto; error_log /var/log/nginx/error.log; pid /run/nginx.pid; # load dynamic modules. see /usr/share/nginx/readme.dynamic. include /usr/share/nginx/modules/*.conf; events { worker_connections 1024; } http { 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; tcp_nodelay on; keepalive_timeout 65; types_hash_max_size 2048; include /etc/nginx/mime.types; default_type application/octet-stream; # load modular configuration files from the /etc/nginx/conf.d directory. # see http://nginx.org/en/docs/ngx_core_module.html#include # for more information. include /etc/nginx/conf.d/*.conf; server { listen 80 default_server; listen [::]:80 default_server; server_name 182.254.161.54; root /usr/share/nginx/html; # load configuration files for the default server block. include /etc/nginx/default.d/*.conf; location / { proxy_pass http://pic; } error_page 404 /404.html; location = /40x.html { } error_page 500 502 503 504 /50x.html; location = /50x.html { } } upstream pic{ server 182.254.161.54:8088 weight=5; server 182.254.161.54:8089 weight=5; } }
컨테이너 시작
코드 복사 코드는 다음과 같습니다. 다음과 같습니다:
docker run --name mynginx -d -p 82:80 -v /data/nginx/conf/nginx.conf:/etc/nginx/nginx.conf -v /data/nginx/logs:/var /log/nginx -d docker.io/nginx
시작된 컨테이너 보기
docker ps
이전에 docker에 두 개의 Tomcat을 배포했습니다. 하나는 포트 8088이고 다른 하나는 포트 8089이며 두 개의 컨테이너를 입력하여 작성했습니다. 간단한 페이지
액세스 포트 8088
액세스 포트 8089
이제 nginx를 통해 두 Tomcat의 콘텐츠에 액세스하여 로드 밸런싱 기능을 구현하는 것이 차이점을 더 잘 반영할 수 있습니다. 로드 밸런싱 기능 각 페이지의 내용은 다르지만 액세스 경로는 동일하며 nginx 리버스 프록시를 통해 액세스를 순환합니다
위 내용은 Docker nginx 마운팅을 설치하고 구성하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!