在多个URL上使用相同的tomcat实例

时间:2019-07-09 09:36:16

标签: apache tomcat

我有一个运行在服务器opxxx01上的tomcat实例(FQDN:opxxx01.domain.com) 一切正常。但我想在另一个URL上显示相同的实例:quietude.anotherdomain.com

我阅读了很多与此相关的主题,但是对我来说没有任何帮助:

在opxxx01.domain.com上->确定

在quietude.anotherdomain.com上-> KO

上下文: 红帽企业Linux服务器版本7.4(Maipo); Tomcat 8.5.30; Apache 2.4.6

您可以在下面看到我的代码,但是quietude.anotherdomain.com上什么也没有显示。

感谢您的帮助:)

<Host name="localhost"  appBase="webapps" unpackWARs="true" autoDeploy="true">
    <Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs"
        prefix="localhost_access_log" suffix=".txt"
        pattern="%h %l %u %t &quot;%r&quot; %s %b %S %D %F" />
    <Valve className="org.apache.catalina.valves.ErrorReportValve" showReport="false" showServerInfo="false" />
</Host>
<!-- I added these lines below -->
<Host name="quietude.anotherdomain.com"  appBase="webapps" unpackWARs="true" autoDeploy="true">
    <Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs"
        prefix="quietude_access_log" suffix=".txt"
        pattern="%h %l %u %t &quot;%r&quot; %s %b %S %D %F" />
</Host>

1 个答案:

答案 0 :(得分:0)

我终于找到了!

我是文件 app.f2e312e439be13da8b85.js ,我更改了:

http://opxxx01.domain.com/downloads/quietude_result.csv

作者

/downloads/quietude_result.csv

和我的文件 Statistics.vue 中,我进行了更改:

axios.get('http://opxxx01.domain.com/downloads/quietude_result.csv').then(response => {

作者

axios.get('/downloads/quietude_result.csv').then(response => {