-
Notifications
You must be signed in to change notification settings - Fork 58
LCORE-973: Updated TLS configuration #844
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -4806,7 +4806,7 @@ SQLite database configuration. | |||||||||||||
|
|
||||||||||||||
| | Field | Type | Description | | ||||||||||||||
| |-------|------|-------------| | ||||||||||||||
| | db_path | string | | | ||||||||||||||
| | db_path | string | Path to file where SQLite database is stored | | ||||||||||||||
|
|
||||||||||||||
|
|
||||||||||||||
| ## ServiceConfiguration | ||||||||||||||
|
|
@@ -4871,12 +4871,16 @@ Attributes: | |||||||||||||
|
|
||||||||||||||
| TLS configuration. | ||||||||||||||
|
|
||||||||||||||
| See also: | ||||||||||||||
| - https://fastapi.tiangolo.com/deployment/https/ | ||||||||||||||
| - https://en.wikipedia.org/wiki/Transport_Layer_Security | ||||||||||||||
|
Comment on lines
+4874
to
+4876
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Wrap bare URLs in markdown link syntax (consistent with docs/config.md). The See also links for TLSConfiguration should use markdown link syntax: See also:
-- https://fastapi.tiangolo.com/deployment/https/
-- https://en.wikipedia.org/wiki/Transport_Layer_Security
+- [FastAPI HTTPS Deployment](https://fastapi.tiangolo.com/deployment/https/)
+- [Transport Layer Security Overview](https://en.wikipedia.org/wiki/Transport_Layer_Security)📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||||||||||
|
|
||||||||||||||
|
|
||||||||||||||
| | Field | Type | Description | | ||||||||||||||
| |-------|------|-------------| | ||||||||||||||
| | tls_certificate_path | | | | ||||||||||||||
| | tls_key_path | | | | ||||||||||||||
| | tls_key_password | | | | ||||||||||||||
| | tls_certificate_path | | SSL/TLS certificate file path for HTTPS support. | | ||||||||||||||
| | tls_key_path | | SSL/TLS private key file path for HTTPS support. | | ||||||||||||||
| | tls_key_password | | Path to file containing the password to decrypt the SSL/TLS private key. | | ||||||||||||||
|
|
||||||||||||||
|
|
||||||||||||||
| ## ToolCall | ||||||||||||||
|
|
||||||||||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wrap bare URLs in markdown link syntax.
The static analyzer flagged bare URLs (MD034). Wrap the links in markdown link syntax for proper formatting:
📝 Committable suggestion
🧰 Tools
🪛 markdownlint-cli2 (0.18.1)
377-377: Bare URL used
(MD034, no-bare-urls)
378-378: Bare URL used
(MD034, no-bare-urls)
🤖 Prompt for AI Agents