-
-
Notifications
You must be signed in to change notification settings - Fork 7.6k
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
Update tesla_fleet.markdown with NGINX public key hosting option. #37703
base: current
Are you sure you want to change the base?
Conversation
For those of us that use the reverse proxy "NGINX Home Assistant SSL proxy" Add-on together with a service like DuckDNS.org for external Home Assistant access, the public key file can also easily be hosted locally instead of on a third party service.
✅ Deploy Preview for home-assistant-docs ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
📝 WalkthroughWalkthroughThe documentation for the Tesla Fleet integration has been updated to clarify the process for hosting a public/private key pair using the NGINX Home Assistant SSL proxy Add-on. The changes provide a detailed, step-by-step guide on generating keys, backing them up, adjusting NGINX configuration settings, and verifying public key accessibility. Previous instructions regarding the need for a web domain and host have been revised to indicate that hosting can be performed locally or via free web options, ranked from simple to complex, with the new instructions supplementing the existing content. Changes
Sequence Diagram(s)sequenceDiagram
participant User
participant KeyManager as "Key Manager"
participant NGINX as "NGINX HA SSL Proxy"
User->>+KeyManager: Execute key generation command
KeyManager-->>-User: Return generated public/private keys
User->>+KeyManager: Backup the key files
KeyManager-->>-User: Confirm backup completion
User->>+NGINX: Update configuration with key details
NGINX-->>-User: Confirm configuration applied
User->>NGINX: Test public key accessibility
NGINX-->>User: Provide accessibility status
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
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.
Actionable comments posted: 0
🧹 Nitpick comments (1)
source/_integrations/tesla_fleet.markdown (1)
57-76
: Enhance the Details Block Formatting & ConsistencyThe new details block titled "Hosting a Public/Private Key Pair with the NGINX Home Assistant SSL proxy Add-on" provides a comprehensive, step-by-step guide that is very helpful. I have a few suggestions to improve formatting and ensure consistency with markdown guidelines:
- Comma for Clarity: In the introductory sentence (line ~59), consider adding a comma after introductory phrases—for example, "With this method, it is assumed that..."—to enhance readability.
- Fenced Code Block Language: The fenced code block starting around line 68 currently lacks a language specifier. Adding a language tag (e.g., using ````shell```) will enable proper syntax highlighting and satisfy markdownlint MD040 requirements.
- Ordered List Numbering: The steps are currently numbered sequentially (1, 2, 3, …). Some markdown lint configurations (MD029) expect a uniform numbering style (for instance, consistently using "1." for each list item). Consider aligning the list numbering with your documentation style—either adjust the numbers or configure the linter accordingly.
- Blank Lines and Trailing Spaces: Ensure that fenced code blocks and list items are surrounded by blank lines to meet MD032 and MD031 guidelines. Also, double-check for any trailing spaces (as flagged at line 75) and remove them to maintain clean formatting.
🧰 Tools
🪛 LanguageTool
[typographical] ~60-~60: It appears that a comma is missing.
Context: ... the rest of the integration. With this method it is assumed that the [NGINX Home Assi...(DURING_THAT_TIME_COMMA)
🪛 markdownlint-cli2 (0.17.2)
67-67: Lists should be surrounded by blank lines
null(MD032, blanks-around-lists)
68-68: Fenced code blocks should be surrounded by blank lines
null(MD031, blanks-around-fences)
68-68: Fenced code blocks should have a language specified
null(MD040, fenced-code-language)
72-72: Fenced code blocks should be surrounded by blank lines
null(MD031, blanks-around-fences)
73-73: Ordered list item prefix
Expected: 1; Actual: 7; Style: 1/2/3(MD029, ol-prefix)
73-73: Lists should be surrounded by blank lines
null(MD032, blanks-around-lists)
74-74: Ordered list item prefix
Expected: 2; Actual: 8; Style: 1/2/3(MD029, ol-prefix)
75-75: Trailing spaces
Expected: 0 or 2; Actual: 3(MD009, no-trailing-spaces)
🪛 GitHub Actions: home-assistant.io Test
[warning] 68-72: Unexpected missing fenced code language flag in info string, expected keyword fenced-code-flag
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (1)
source/_integrations/tesla_fleet.markdown
(2 hunks)
🧰 Additional context used
🪛 LanguageTool
source/_integrations/tesla_fleet.markdown
[typographical] ~60-~60: It appears that a comma is missing.
Context: ... the rest of the integration. With this method it is assumed that the [NGINX Home Assi...
(DURING_THAT_TIME_COMMA)
🪛 markdownlint-cli2 (0.17.2)
source/_integrations/tesla_fleet.markdown
67-67: Lists should be surrounded by blank lines
null
(MD032, blanks-around-lists)
68-68: Fenced code blocks should be surrounded by blank lines
null
(MD031, blanks-around-fences)
68-68: Fenced code blocks should have a language specified
null
(MD040, fenced-code-language)
72-72: Fenced code blocks should be surrounded by blank lines
null
(MD031, blanks-around-fences)
73-73: Ordered list item prefix
Expected: 1; Actual: 7; Style: 1/2/3
(MD029, ol-prefix)
73-73: Lists should be surrounded by blank lines
null
(MD032, blanks-around-lists)
74-74: Ordered list item prefix
Expected: 2; Actual: 8; Style: 1/2/3
(MD029, ol-prefix)
75-75: Trailing spaces
Expected: 0 or 2; Actual: 3
(MD009, no-trailing-spaces)
🪛 GitHub Actions: home-assistant.io Test
source/_integrations/tesla_fleet.markdown
[warning] 68-72: Unexpected missing fenced code language flag in info string, expected keyword fenced-code-flag
⏰ Context from checks skipped due to timeout of 90000ms (3)
- GitHub Check: Redirect rules - home-assistant-docs
- GitHub Check: Header rules - home-assistant-docs
- GitHub Check: Pages changed - home-assistant-docs
🔇 Additional comments (1)
source/_integrations/tesla_fleet.markdown (1)
47-52
: Clarify Key Hosting Options in the PrerequisitesThe updated bullet point now clearly indicates that users can serve their public key file either locally—with guidance via the NGINX Home Assistant SSL proxy Add-on—or via several free web-hosting options. This added detail directly addresses the documentation gap identified in issue #37697 and improves user clarity.
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.
Actionable comments posted: 0
🧹 Nitpick comments (4)
source/_integrations/tesla_fleet.markdown (4)
47-52
: Clarify Public Key Hosting Options in Prerequisites
The updated prerequisites now clearly explain that users may host the public key file locally (using the NGINX Home Assistant SSL proxy Add-on) or via one of several free web options. This change directly addresses the PR objective. For extra clarity, consider briefly mentioning any security best practices when hosting key files locally.
57-60
: Enhance Punctuation in Key Pair Instructions
The new "Hosting a Public/Private Key Pair with the NGINX Home Assistant SSL proxy Add-on" details block is a strong addition. In line 60, the sentence beginning with “With this method it is assumed that…” would read more naturally with a comma after “With this method”. For example:“With this method, it is assumed that the NGINX Home Assistant SSL proxy Add-on is running as a reverse proxy…”
🧰 Tools
🪛 LanguageTool
[typographical] ~60-~60: It appears that a comma is missing.
Context: ... the rest of the integration. With this method it is assumed that the [NGINX Home Assi...(DURING_THAT_TIME_COMMA)
67-72
: Improve Markdown Formatting Around Code Blocks
The fenced code block (lines 68–72) and the preceding list item (line 67) would benefit from a surrounding blank line, as recommended by markdownlint rules (MD031, MD032). Adding a blank line before and after the fenced code block will enhance readability and help maintain consistent formatting.🧰 Tools
🪛 markdownlint-cli2 (0.17.2)
67-67: Lists should be surrounded by blank lines
null(MD032, blanks-around-lists)
68-68: Fenced code blocks should be surrounded by blank lines
null(MD031, blanks-around-fences)
72-72: Fenced code blocks should be surrounded by blank lines
null(MD031, blanks-around-fences)
73-75
: Ensure Consistent Ordered List Numbering
Within this details block, the ordered steps after the code block show minor inconsistencies (e.g., numbered items that do not restart uniformly) and trailing spaces (MD009). To improve consistency and adhere to markdown best practices, consider renumbering the steps—either by using sequential numbers throughout or by using the same number (e.g., “1.”) so that Markdown auto-numbers them.🧰 Tools
🪛 markdownlint-cli2 (0.17.2)
73-73: Ordered list item prefix
Expected: 1; Actual: 7; Style: 1/2/3(MD029, ol-prefix)
73-73: Lists should be surrounded by blank lines
null(MD032, blanks-around-lists)
74-74: Ordered list item prefix
Expected: 2; Actual: 8; Style: 1/2/3(MD029, ol-prefix)
75-75: Trailing spaces
Expected: 0 or 2; Actual: 3(MD009, no-trailing-spaces)
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (1)
source/_integrations/tesla_fleet.markdown
(2 hunks)
🧰 Additional context used
🪛 LanguageTool
source/_integrations/tesla_fleet.markdown
[typographical] ~60-~60: It appears that a comma is missing.
Context: ... the rest of the integration. With this method it is assumed that the [NGINX Home Assi...
(DURING_THAT_TIME_COMMA)
🪛 markdownlint-cli2 (0.17.2)
source/_integrations/tesla_fleet.markdown
67-67: Lists should be surrounded by blank lines
null
(MD032, blanks-around-lists)
68-68: Fenced code blocks should be surrounded by blank lines
null
(MD031, blanks-around-fences)
72-72: Fenced code blocks should be surrounded by blank lines
null
(MD031, blanks-around-fences)
73-73: Ordered list item prefix
Expected: 1; Actual: 7; Style: 1/2/3
(MD029, ol-prefix)
73-73: Lists should be surrounded by blank lines
null
(MD032, blanks-around-lists)
74-74: Ordered list item prefix
Expected: 2; Actual: 8; Style: 1/2/3
(MD029, ol-prefix)
75-75: Trailing spaces
Expected: 0 or 2; Actual: 3
(MD009, no-trailing-spaces)
Proposed change
For those of us that use the reverse proxy "NGINX Home Assistant SSL proxy" Add-on together with a service like DuckDNS.org for external Home Assistant access, the public key file can also easily be hosted locally instead of on a third party service.
Type of change
current
branch).current
branch).next
branch).next
branch).Additional information
Checklist
current
branch.next
branch.Summary by CodeRabbit