Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 771 | blopes | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <%-- |
||
| 3 | Licensed to the Apache Software Foundation (ASF) under one or more |
||
| 4 | contributor license agreements. See the NOTICE file distributed with |
||
| 5 | this work for additional information regarding copyright ownership. |
||
| 6 | The ASF licenses this file to You under the Apache License, Version 2.0 |
||
| 7 | (the "License"); you may not use this file except in compliance with |
||
| 8 | the License. You may obtain a copy of the License at |
||
| 9 | |||
| 10 | http://www.apache.org/licenses/LICENSE-2.0 |
||
| 11 | |||
| 12 | Unless required by applicable law or agreed to in writing, software |
||
| 13 | distributed under the License is distributed on an "AS IS" BASIS, |
||
| 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||
| 15 | See the License for the specific language governing permissions and |
||
| 16 | limitations under the License. |
||
| 17 | --%> |
||
| 18 | <%@page session="false" contentType="text/html; charset=UTF-8" %> |
||
| 19 | <%@page import="java.util.Map" %> |
||
| 20 | <%@page import="java.util.Map.Entry" %> |
||
| 21 | <%@page import="java.util.List" %> |
||
| 22 | <!DOCTYPE html |
||
| 23 | PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" |
||
| 24 | "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
||
| 25 | |||
| 26 | <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> |
||
| 27 | <% Map<String,List<String>> cipherList = (Map<String,List<String>>) request.getAttribute("cipherList"); |
||
| 28 | %> |
||
| 29 | <head> |
||
| 30 | <meta http-equiv="content-type" content="text/html; charset=UTF-8"/> |
||
| 31 | <meta http-equiv="pragma" content="no-cache"/><!-- HTTP 1.0 --> |
||
| 32 | <meta http-equiv="cache-control" content="no-cache,must-revalidate"/><!-- HTTP 1.1 --> |
||
| 33 | <meta http-equiv="expires" content="0"/><!-- 0 is an invalid value and should be treated as 'now' --> |
||
| 34 | <meta http-equiv="content-language" content="en"/> |
||
| 35 | <meta name="copyright" content="copyright 2005-2025 the Apache Software Foundation"/> |
||
| 36 | <meta name="robots" content="noindex,nofollow,noarchive"/> |
||
| 37 | <title>Configured ciphers per Connector</title> |
||
| 38 | <link href="<%=request.getContextPath()%>/images/favicon.ico" rel="icon" type="image/x-icon" /> |
||
| 39 | </head> |
||
| 40 | <body> |
||
| 41 | <h1>Configured ciphers per Connector</h1> |
||
| 42 | |||
| 43 | <table border="1" cellpadding="2" cellspacing="2" width="100%"> |
||
| 44 | <thead> |
||
| 45 | <tr> |
||
| 46 | <th>Connector / TLS Virtual Host</th> |
||
| 47 | <th>Enabled Ciphers</th> |
||
| 48 | </tr> |
||
| 49 | </thead> |
||
| 50 | <tbody> |
||
| 51 | <% |
||
| 52 | for (Map.Entry<String, List<String>> entry : cipherList.entrySet()) { |
||
| 53 | %> |
||
| 54 | <tr> |
||
| 55 | <td><%=entry.getKey()%></td> |
||
| 56 | <td> |
||
| 57 | <% |
||
| 58 | for (String cipher : entry.getValue()) { |
||
| 59 | %> |
||
| 60 | <p><%=cipher%></p> |
||
| 61 | <% |
||
| 62 | } |
||
| 63 | %> |
||
| 64 | </td> |
||
| 65 | </tr> |
||
| 66 | <% |
||
| 67 | } |
||
| 68 | %> |
||
| 69 | </tbody> |
||
| 70 | </table> |
||
| 71 | |||
| 72 | <form method="GET" action="<%=request.getContextPath()%>/html"> |
||
| 73 | <p style="text-align: center;"> |
||
| 74 | <input type="submit" value="Return to main page" /> |
||
| 75 | </p> |
||
| 76 | </form> |
||
| 77 | |||
| 78 | <%--div style="display: none;"> |
||
| 79 | <p> |
||
| 80 | <a href="http://validator.w3.org/check?uri=referer"><img |
||
| 81 | src="http://www.w3.org/Icons/valid-html401" |
||
| 82 | alt="Valid HTML 4.01!" height="31" width="88"></a> |
||
| 83 | <a href="http://validator.w3.org/check?uri=referer"><img |
||
| 84 | src="http://www.w3.org/Icons/valid-xhtml10" |
||
| 85 | alt="Valid XHTML 1.0!" height="31" width="88" /></a> |
||
| 86 | <a href="http://validator.w3.org/check?uri=referer"><img |
||
| 87 | src="http://www.w3.org/Icons/valid-xhtml11" |
||
| 88 | alt="Valid XHTML 1.1!" height="31" width="88" /></a> |
||
| 89 | </p> |
||
| 90 | </div--%> |
||
| 91 | |||
| 92 | </body> |
||
| 93 | </html> |