mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-03-04 08:25:57 +00:00
tls: pages: Add links to RFCs relevant to STARTTLS
This commit is contained in:
parent
6a58451dc0
commit
84bbda21ab
2 changed files with 9 additions and 4 deletions
|
@ -591,7 +591,7 @@
|
||||||
"keywordDescription": "Search keyword in plain HTML or JSON response. The search is case-sensitive.",
|
"keywordDescription": "Search keyword in plain HTML or JSON response. The search is case-sensitive.",
|
||||||
"invertKeywordDescription": "Look for the keyword to be absent rather than present.",
|
"invertKeywordDescription": "Look for the keyword to be absent rather than present.",
|
||||||
"tcpRequestDescription": "Request sent to the server after establishing the connection. Trailing newlines may be required. JavaScript escape sequences are allowed.",
|
"tcpRequestDescription": "Request sent to the server after establishing the connection. Trailing newlines may be required. JavaScript escape sequences are allowed.",
|
||||||
"tcpStartTlsDescription": "Start unencrypted and upgrade connection using STARTTLS.",
|
"tcpStartTlsDescription": "Start unencrypted and upgrade connection using STARTTLS. Relevant documentation: {rfc2595}, {rfc3207}",
|
||||||
"tcpStartTlsPresetDescription": "Select a preset below to auto-fill commonly used values for request, keyword, and STARTTLS prompt/command/response.",
|
"tcpStartTlsPresetDescription": "Select a preset below to auto-fill commonly used values for request, keyword, and STARTTLS prompt/command/response.",
|
||||||
"tcpStartTlsPromptDescription": "Server prompt (prefix) indicating readiness for STARTTLS command. JavaScript escape sequences are allowed.",
|
"tcpStartTlsPromptDescription": "Server prompt (prefix) indicating readiness for STARTTLS command. JavaScript escape sequences are allowed.",
|
||||||
"tcpStartTlsCommandDescription": "Command to initiate the TLS negotiation. Trailing newlines may be required. JavaScript escape sequences are allowed.",
|
"tcpStartTlsCommandDescription": "Command to initiate the TLS negotiation. Trailing newlines may be required. JavaScript escape sequences are allowed.",
|
||||||
|
|
|
@ -933,9 +933,14 @@
|
||||||
<label class="form-check-label" for="tcp-start-tls">
|
<label class="form-check-label" for="tcp-start-tls">
|
||||||
{{ $t("Use STARTTLS") }}
|
{{ $t("Use STARTTLS") }}
|
||||||
</label>
|
</label>
|
||||||
<div class="form-text">
|
<i18n-t keypath="tcpStartTlsDescription" tag="div" class="form-text">
|
||||||
{{ $t("tcpStartTlsDescription") }}
|
<template #rfc2595>
|
||||||
</div>
|
<a href="https://datatracker.ietf.org/doc/html/rfc2595">RFC 2595</a>
|
||||||
|
</template>
|
||||||
|
<template #rfc3207>
|
||||||
|
<a href="https://datatracker.ietf.org/doc/html/rfc3207">RFC 3207</a>
|
||||||
|
</template>
|
||||||
|
</i18n-t>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<template v-if="monitor.tcpStartTls">
|
<template v-if="monitor.tcpStartTls">
|
||||||
|
|
Loading…
Add table
Reference in a new issue