简体   繁体   English

如何在端口https(8443)中将Jboss-eap-6.1配置为外部ip访问

[英]How Configure Jboss-eap-6.1 to external ip access in port https(8443)

I want to put my jboss to be accessed by the https port from an external ip. 我想将我的jboss通过外部IP的https端口进行访问。 For the http port it worked but for the https port does not work. 对于http端口,它有效,但对于https端口,则无效。 My standalone.xml jboss: 我的standalone.xml jboss:

<interfaces>
    <interface name="management">
        <any-address/>
    </interface>
    <interface name="public">
        <any-address/>
    </interface>
    <interface name="unsecure">
        <any-address/>
    </interface>
</interfaces>

And the connector: 和连接器:

<connector name="https" protocol="HTTP/1.1" scheme="https" socket-binding="https" secure="true">
     <ssl name="https" key-alias="jeve_key" password="jevepass" certificate-key-file="/opt/jboss-eap-6.1/standalone/configuration/jeve.keystore" verify-client="false"/>
</connector>

What am I doing wrong? 我究竟做错了什么?

was the proxy that was preventing access to the https of a external ip. 是阻止访问外部ip的https的代理。 I removed the proxy and it worked 我删除了代理,它起作用了

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM