리눅스 커멘트 창에서
vi /etc/nginx/nginx.conf
a 를 입력하여 글쓰기 모드로 변환 후
location에 아래와 같이 적어줍니다
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를 재실행 시켜줍니다.
service tomcat restart
service nginx restart
'프로그래밍 > 리눅스' 카테고리의 다른 글
리눅스 MySQL TimeZone 확실한 변경법 (0) | 2018.09.04 |
---|---|
Tomcat과 Nginx 가상 호스팅 설정하여 도메인으로 접속하기 (0) | 2018.06.28 |