소스를 올린건 없이 JBOSS만 설치해놨다


nginx 에서 jboss index 페이지 호출이 되는데 로컬에서 jboss index 페이지 호출이 안된다.


                                          사용자 > nginx > jboss


이렇게 호출되는데 사용자가 nginx를 호출했을때 jboss로 리다이렉트가 되도록 하고 싶다.


항상 이용만하다가 내가 구현할라니까 쉽지가 않네ㅋ


일단 nginx config들은 /etc/nginx/ 하위에 있다.

[jboss@ip-172-31-9-0 nginx]$ pwd

/etc/nginx

[jboss@ip-172-31-9-0 nginx]$ ll

total 68

drwxr-xr-x 2 root root 4096 Dec  8 10:50 conf.d

drwxr-xr-x 2 root root 4096 Sep 12 04:57 default.d

-rw-r--r-- 1 root root 1077 Sep 12 04:57 fastcgi.conf

-rw-r--r-- 1 root root 1077 Sep 12 04:57 fastcgi.conf.default

-rw-r--r-- 1 root root 1007 Sep 12 04:57 fastcgi_params

-rw-r--r-- 1 root root 1007 Sep 12 04:57 fastcgi_params.default

-rw-r--r-- 1 root root 2837 Sep 12 04:57 koi-utf

-rw-r--r-- 1 root root 2223 Sep 12 04:57 koi-win

-rw-r--r-- 1 root root 3957 Sep 12 04:57 mime.types

-rw-r--r-- 1 root root 3957 Sep 12 04:57 mime.types.default

-rw-r--r-- 1 root root 3734 Sep 12 04:57 nginx.conf

-rw-r--r-- 1 root root 2656 Sep 12 04:57 nginx.conf.default

-rw-r--r-- 1 root root  636 Sep 12 04:57 scgi_params

-rw-r--r-- 1 root root  636 Sep 12 04:57 scgi_params.default

-rw-r--r-- 1 root root  664 Sep 12 04:57 uwsgi_params

-rw-r--r-- 1 root root  664 Sep 12 04:57 uwsgi_params.default

-rw-r--r-- 1 root root 3610 Sep 12 04:57 win-utf

 


내가 수정할 정보는 nginx.conf!


굵은 글씨로 작성된 부분만 추가해주면 된다.


http{

    upstream jboss {

        server 0.0.0.0:9990;

    }


    sever {

        location / {

                proxy_pass http://jboss;

        }

    }



nginx proxy 에 대한 이해는 다음주로..

가이드 블로그다.

좋은 설명이다. http://ktdsoss.tistory.com/139

'Develope > Server' 카테고리의 다른 글

JBOSS 7.1.1 설치 및 실행  (0) 2017.12.08
NGINX 기동 및 확인  (0) 2017.12.08
NGINX 설치  (0) 2017.12.08
리눅스 JAVA 버전 확인 및 변경  (0) 2017.12.07
리눅스에 JDK 1.8 설치  (0) 2017.12.07

+ Recent posts