서비스 구성 상, 기본적으로는 proxy를 통해 WAS로 처리하고,
일부 컨텐츠만 정적으로 처리하려고 했더니, proxy 설정 때문인지 index 구문이 정상적으로 작동하지 않았다.
./nginx_vserver.conf
~
location / {
root <WEB_root>;
index index.html;
include nginx_vserver_service_proxy.conf;
}
~
rewrite를 이용하여 해결.
./nginx_vserver.conf
~
location / {
root <WEB_root>;
index index.html;
rewrite ^/$ /index.html;
include nginx_vserver_service_proxy.conf;
}
~
'IT > System' 카테고리의 다른 글
[httpd] /etc/httpd/modules/mod_jk.so: cannot open shared object file: Permission denied (0) | 2020.11.14 |
---|---|
[jenkins] jenkins 설치하기. (0) | 2020.11.14 |
[Windows] 오류: api-ms-win-crt-runtime-l1-1-0.dll이 없습니다. (0) | 2020.11.14 |
[Tomcat] centos에서 tomcat 서비스로 등록하기 (0) | 2020.11.14 |
[AWS] CLI로 비밀번호 확인 하기. (0) | 2020.11.14 |