취업아되라 (1) 썸네일형 리스트형 도커 3티어 연동 도커 3티어 구성 https://bo20cy.tistory.com/16 이전 블로그 참조 NGINX - Tomcat 연동 연동하기 전 내부 ip 확인 docker ps -a docker inspect tomcat | grep IPAddress reverse_proxy사용 리버스프록시를 사용하여 nginx접속시 tomcat으로 넘겨주겠습니다. #nginx.conf ------------------- upstream tomcat { server ##내부ip##:8080; #내부ip입력 } server { listen 80; server_name localhost; location / { root /usr/share/nginx/html; index index.html index.htm; proxy_pass h.. 이전 1 다음