Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/http/4.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
如何在端口https(8443)中将Jboss-eap-6.1配置为外部ip访问_Http_Https_Jboss_Jboss Eap 6 - Fatal编程技术网

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

如何在端口https(8443)中将Jboss-eap-6.1配置为外部ip访问,http,https,jboss,jboss-eap-6,Http,Https,Jboss,Jboss Eap 6,我想通过https端口从外部ip访问我的jboss。对于http端口,它工作,但对于https端口不工作。 My standalone.xml jboss: <interfaces> <interface name="management"> <any-address/> </interface> <interface name="public"> <any-address/

我想通过https端口从外部ip访问我的jboss。对于http端口,它工作,但对于https端口不工作。 My standalone.xml jboss:

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

和连接器:

<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>


我做错了什么?

是阻止访问外部ip的https的代理。我删除了代理,它成功了