配置apache DocumentRoot和spring boot

时间:2015-01-21 04:43:19

标签: apache2 spring-boot

我有一个带有嵌入式tomcat服务器的Spring Boot,我想从我的apache服务器创建一个VirtualHost条目到我的独立应用程序。在这种情况下,DocumentRoot会是什么?

1 个答案:

答案 0 :(得分:1)

您不需要DocumentRoot,使用Apache作为反向代理

https://wiki.apache.org/httpd/TomcatReverseProxy

这样的东西
<VirtualHost *:80>
    ServerName myhost.name
    ProxyRequests Off
    ProxyPass / http://localhost:8080
    ProxyPassReverse / http://localhost:8080
</VirtualHost>