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では動作しません私のサーバー上のカスタムバックアップツールを持っています。
私は異なっていると思っています。この質問は、ローカルホストのトラフィックのみです。 SSLを完全に無効にしない – Deano