선 밖에 선 자유인

nginx / tomcat 설정 in Ubuntu 14.04 본문

IT/System & Network

nginx / tomcat 설정 in Ubuntu 14.04

Hotman 2016. 7. 27. 17:46

nginx + tomcat8 + mariadb on Ubuntu 14.04


https://dont.pe.kr/tc/494

https://www.mkyong.com/nginx/nginx-apache-tomcat-configuration-example/


- nginx.conf 파일에 추가


        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;

        }


- manager 접속시 403 에러 발생할 때

<tomcat-users>

  <role rolename="manager-script"/>

  <role rolename="manager-gui"/>

  <role rolename="manager-jmx"/>

  <role rolename="manager-status"/>

  <user username="tomcat" password="admin" roles="manager-gui,manager-status"/>

</tomcat-users>



Comments