
Apache2 웹 서버를 통해 해당 URL을 프록시하려는 Tomcat에 배포된 Spring 애플리케이션이 있습니다. 지금은 다음과 같이 수행합니다.
<VirtualHost *:8080>
ProxyPass /app/login http://localhost/app/login
ProxyPassReverse /app/login http://localhost/app/login
ProxyPass /app/home http://localhost/app/home
ProxyPass /app/profile http://localhost/app/profile
...
</VirtualHost>
먼저 그렇게 해도 괜찮나요? through 만 수행 /login
한 다음 지정할 수 있습니까 DocumentRoot
?
감사해요