如何在 Apache2 httpd.conf 中指定要代理的 URL

如何在 Apache2 httpd.conf 中指定要代理的 URL

我在 Tomcat 中部署了一个 Spring 应用程序,我想通过 Apache2 Web 服务器代理它的 URL,目前我的操作如下:

<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>

首先这样做可以吗?是否可以先通过然后/login再指定DocumentRoot

谢谢

相关内容