1

我在不同的机器上有 apache 服务器和 JBoss 服务器。我想将 mydomain.com 的流量重定向到 JBoss 192.168.1.100:8080。.

下面是配置

NameVirtualHost *:80

<VirtualHost *:80>
ProxyRequests Off
ServerName mydomain.com
<Proxy *>
Order deny,allow
Allow from all

</Proxy>

ProxyPass / http://192.168.1.100:8080/  
ProxyPassReverse / http://192.168.1.100:8080/
ProxyPassReverseCookiePath / /

</VirtualHost>

当我访问域时,出现“服务暂时不可用”。如果我在同一台机器上配置 jboss,我可以访问

请建议如何在不同的机器上访问作业

4

1 回答 1

0

您可能需要允许 JBoss 绑定到 localhost 以外的其他地址。编辑您的standalone.xml 文件并在公共界面中如下

<interfaces>
    <interface name="public">
        <any-address/>
    </interface>
</interfaces>
于 2013-07-31T09:03:00.193 回答