도커
-
docker를 활용한 apache-tomcat 이중화 서버 구현개발이야기 2021. 5. 13. 10:20
개요 이 글은 docker를 활용하여 httpd(apache) - tomcat 이중화 서버를 구현하는 방법을 정리한 글이다. 이 글에서 사용된 소스코드는 github 에 업로드 되어 있으며 프로젝트 구조는 다음과 같다. 디렉토리 구조 ├── README.md ├── docker │ ├── docker-compose-httpd.yml │ └── docker-compose-tomcat.yml ├── httpd │ ├── build │ │ ├── Dockerfile │ │ └── run-httpd.sh │ ├── conf │ │ ├── httpd.conf │ │ └── magic │ └── conf.d │ ├── README │ ├── autoindex.conf │ ├── mod_jk.conf │ ├── ur..