docker (5): Mac docker 사용자 정의 nginx 설정 패키지 nginx 미 러
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
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
여러 모니터와 Mac의 화면 공유 🖥🖥 ▶️🖥🖥MacOS는 공식 원격 데스크톱 앱인 "화면 공유"를 제공하지만 '다중 모니터 대 다중 모니터' 원격 액세스를 지원하지 않습니다. 하나는 첫 번째 모니터에 해당하고 다른 하나는 두 번째 모니터에 해당하는 2개의 세션...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.