Nginx Server 1.8 과 Tomcat 8 연동하기
1) 개요
Apache 대신 Nginx Server 사용시 Tomcat과 연동 설정한 내용을 정리하기 위해 작성되었습니다.
2) 설정방법
- Nginx 설정파일 변경하기
sudo vi /opt/nginx/conf/nginx.conf
nginx.conf
파일에 수정할 내용server { listen 443 ssl; . . location / { //수정 . . root [Tomcat 웹 서비스 디렉토리] //ex) [Tomcat 설치된 디렉토리]/webapps/ROOT . . } . . location ~\.jsp$ { //추가 proxy_pass http://localhost:8080; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Host $http_host; } }
- Nginx 재시작
sudo service nginx restart
'Linux > CentOS' 카테고리의 다른 글
CentOS 7 에서 VMWare Tools 설치 (2) | 2015.12.09 |
---|---|
CentOS 7 로컬 DNS 설정하기 (0) | 2015.12.08 |
Nginx Server 1.8 에서 HTTPS 적용하기 (0) | 2015.11.11 |
CentOS 7 에 Nginx Server 1.8 설치하기 (2) | 2015.11.11 |
Apache Web Server 2.4 에 정적파일 캐싱하기 (0) | 2015.11.11 |