docker 에 nginx 를 설치 하고 여러 도 메 인 이름 을 설정 합 니 다.
1324 단어 수필
docker search nginx
2. nginx 미 러 다운로드
docker pull nginx:5.7
3. 용기 만 들 기 및 시작
docker run -p 80:80 --name myNgin -v /nginx/nginx.conf:/etc/nginx/nginxconf -d nginx
nginx , /etc/nginx/nginx.conf , /nginx/nginx.conf
4. / nginx / nginx. conf 에 들 어가 설정 수정
http {
server {
listen 80;
server_name yxiumei.com;
access_log off;
location / {
proxy_pass a.com:9000;
proxy_read_timeout 300;
proxy_connect_timeout 300;
proxy_redirect off;
proxy_set_header X-Real_IP $remote_addr;
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
}
}
}
server {
listen 80;
server_name abc.com;
access_log off;
location / {
proxy_pass http://abc.com:8000;
proxy_read_timeout 300;
proxy_connect_timeout 300;
proxy_redirect off;
proxy_set_header X-Real_IP $remote_addr;
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
}
}
}
5. 프로필 을 수정 하려 면 etc / nginx 디 렉 터 리 에 들 어가 서 다시 시작 해 야 합 니 다.
nginx -s reload
개인 홈 페이지
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
자바 디지털 처리 클래스 상용 방법 집합오늘 은 자바 의 디지털 처리 류 와 관련 된 내용 을 배 웠 습 니 다. 그 중에서 흔히 볼 수 있 는 방법 이 많 습 니 다. DecimalFormat 의 format () 과 apply Format () 방법 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.