2017-08-23 8 views
0

私はtomcat 7を使用していますが、ローカルホストからのSSLトラフィックの発信を無効にしたいと考えています。着信トラフィックに対して有効にします。localhost上でのみhttpsを無効にする

web.xmlに次の設定を追加しました。現在、httpからhttpsにトラフィックをリダイレクトしています。

<security-constraint> 
    <web-resource-collection> 
     <web-resource-name>app</web-resource-name> 
     <url-pattern>/info</url-pattern> 
    </web-resource-collection> 
    <!-- OMIT auth-constraint --> 
</security-constraint> 

<security-constraint> 
    <web-resource-collection> 
     <web-resource-name>app</web-resource-name> 
     <url-pattern>/*</url-pattern> 
    </web-resource-collection> 
    <auth-constraint> 
     <role-name>Role</role-name> 
    </auth-constraint> 
</security-constraint> 

私はので、私はローカルホスト上HTPPSを無効にしているよHTTPSでは動作しません私のサーバー上のカスタムバックアップツールを持っています。

+0

私は異なっていると思っています。この質問は、ローカルホストのトラフィックのみです。 SSLを完全に無効にしない – Deano

答えて

0

server.xmlファイルの下にコメントすることができます。

<Connector port="8443" ... SSLEnabled="true" scheme="https" secure="true" sslProtocol="TLS" ... />

は、これが役立つことを願っています!

関連する問題