nginx Æ÷Æ® Æ÷¿öµù

¸®¿À   
   Á¶È¸ 11254   Ãßõ 0    

안녕하세요.

8888 포트로 돌리고 있는 앱이 하나 있다고 가정하고..

접속 주소를 www.test.com:8888 라고 할때..

( www.test.com:8888 주소로 가면..

바로 www.test.com:8888/login.html 로 이동하도록 되어있습니다.)


여기에 nginx를 설치해서..

www.test.com:8888 이 주소를.. 

www.test.com/test 가 되게 해줄수 있을까요?



혼자 검색을 해서 단순하게.. 아래처럼 설정을 하고..


   server {
        listen       80;
        server_name  *.test.com;

location /test/ {
        proxy_set_header X-Forwarded-Host $host;
        proxy_set_header X-Forwarded-Server $host;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_pass http://127.0.0.1:8888/;

  }


브라우저 주소창에  www.test.com/test 라고 치면..

주소가 아래와 같이 이동되면서.. 

www.test.com/login.html

nginx 의 404 Not Found 에러가 나버리는데..ㅠ.ㅠ


제가 원한 결과는.. 

www.test.com/test/login.html

이렇게 되는거거든요..ㅠ.ㅠ



이게 가능하려면 어떻게 해야 할까요?

ªÀº±Û Àϼö·Ï ½ÅÁßÇÏ°Ô.
Á¤Èñ¼· 2016-08
proxy_pass ¸¸ °¡Áö°í Å×½ºÆ® Çѹø Çغ¸½ÃÁö¿ä
°íÁî³Ë 2016-08
http://serverfault.com/questions/598003/nginx-as-a-proxy-for-tomcat-with-subdirectory Âü°íÇϼ¼¿ä
/ Áö¿ì°í rewrite¹® ÀÛ¼ºÇÏ¼Å¾ß ÇÒ µí ÇÕ´Ï´Ù.
location /test {
rewrite ^(.*)$ /$1 break;
proxy_pass http://127.0.0.1:8888/test/;
}


ÀÌ·¸°Ô ÇϽøé

www.test.com:8888/test

·Î Á¢¼Ó ÇßÀ»¶§
127.0.0.1:8888/test ¿¡¼­ ÀÛµ¿ÇÕ´Ï´Ù.
2Â÷ µµ¸ÞÀÎÀ¸·Î °¢°¢ ´Ù¸£°Ô Á¢¼Ó µÇ°Ô ÇÏ°í ½Í´Ù¸é
http{
server {
listen 8888;
server_name test.test.com;
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;
proxy_redirect off;

location / {
rewrite ^(.*)$ /$1 break;
proxy_pass  http://127.0.0.1:8888/test/;
}
}

server {
listen 8888;
server_name service.test.com;
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;
proxy_redirect off;

location / {
rewrite ^(.*)$ /$1 break;
proxy_pass  http://127.0.0.1:8888/service/;
}
}
}


ÀÌ·±½ÄÀ¸·Î ¼³Á¤ Çϸé
test.test.com À¸·Î Á¢¼Ó Çϸé 127.0.0.1:8888/test ¿¡ Á¢¼ÓÇÑ°Í°ú °°ÀÌ ÀÛµ¿
service.test.com À¸·Î Á¢¼ÓÇϸé 127.0.0.1:8888/service ¿¡ Á¢¼ÓÇÑ°Í°ú °°ÀÌ ÀÛµ¿ÇÕ´Ï´Ù.


À§¿Í °°Àº ¹æ¹ýÀ¸·Î µµ¸ÞÀÎ Çϳª¸¦ °¡Áö°í ¿©·¯ ¼­¹ö¿¡ ºÐ»êÇؼ­ ¼­ºñ½º ÇÏ½Ç ¼ö ÀÖ¾î¿ä.


QnA
Á¦¸ñPage 5224/5678
2014-05   4941109   Á¤ÀºÁØ1
2015-12   1477930   ¹é¸Þ°¡
2003-03   11092   ±èÁÖÀÏ
2003-03   11092   ±èµµÇü
2003-05   11092   ¹ÚÁ¾ÀÍ
2009-02   11092   °í¿µ±Ù
2003-03   11092   À±¿µ¼±
2003-05   11092   ±èÀÏȯ
2020-10   11093   ÀǷӰԻ츮¶ó
2003-02   11093   °­¹ÎÈ£
2002-09   11093   ¹Ú¿ø½Ä
2011-02   11093   Larry
2015-02   11093   ¾È´¨¾È
2003-04   11094   Á¤Çö±¸
2003-02   11094   ±è¿µ±â
2002-11   11095   ÀåÀç´ö
2009-09   11095   ¹ÚÁ¾¿ë
2017-01   11095   ¹Ú³²±Ô
2004-03   11095   ÇÑ»óÇå
2003-12   11096   À̼ºÁß
2010-04   11096   Àεð°í
2002-11   11096   ÀÌ´ë¿ì