docker 배치 nginx 로 부하 균형 설정
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 주 소 를 번갈아 방문 하 는 것 을 발견 할 수 있 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.