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