-
Notifications
You must be signed in to change notification settings - Fork 25
Fix image loading issue in MTLS doc #117
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
base: main
Are you sure you want to change the base?
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 |
|---|---|---|
|
|
@@ -4,7 +4,7 @@ To establish secure communication between the Bijira Gateway and your backend, y | |
|
|
||
| Mutual TLS authentication involves both the client and server validating each other’s certificates before establishing a connection. The following diagram depicts this scenario: | ||
|
|
||
|  | ||
|  | ||
|
|
||
| ## Configure mutual TLS to establish secure connectivity | ||
|
|
||
|
|
@@ -46,17 +46,17 @@ Follow the step-by-step instructions below depending on how you want to establis | |
| 7. Click **Add Client Certificate**. | ||
| 8. In the **Add Client Certificate Pair** dialog, select **Generate new key pair** and specify a value as the common name for the certificate pair. This value will be used to identify the certificate. | ||
|
|
||
|  | ||
| {: style="width:300px"} | ||
|
|
||
| 9. Optionally, click **Show advanced options** to expand the section and specify appropriate values for each of the fields. | ||
| 10. Click **Generate**. This generates the certificate and lists it under **Existing Certificates**. | ||
| 11. Click the more options icon corresponding to the certificate and then click **View and Download**. | ||
|
|
||
|  | ||
| {: style="width:500px"} | ||
|
|
||
| This opens the certificate for you to view and download. | ||
|
|
||
|  | ||
| {: style="width:500px"} | ||
|
|
||
| 12. To download the certificate in PEM format, click **Download**. You can add this certificate as a trusted certificate in the API backend server. | ||
|
|
||
|
|
@@ -74,17 +74,17 @@ Follow the step-by-step instructions below depending on how you want to establis | |
| 7. Click **Add Client Certificate**. | ||
| 8. In the **Add Client Certificate Pair** dialog, select **Use my own key pair**. | ||
|
|
||
|  | ||
| {: style="width:300px"} | ||
|
|
||
| 9. Upload the private key and public certificate in PEM format or copy and paste the content of the private key and public certificate. | ||
| 10. Click **Add**. This generates the certificate and lists it under **Existing Certificates**. | ||
| 11. Click the more options icon corresponding to the certificate and then click **View and Download**. | ||
|
|
||
|  | ||
| {: style="width:500px"} | ||
|
|
||
| This opens the certificate for you to view and download. | ||
| This opens the certificate for you to view and download. | ||
|
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. 🧩 Analysis chainMinor text formatting anomaly. Line 85 contains "the certificate" with an extra space. Confirm whether this is intentional or an unintended artifact from the editing process. 🏁 Script executed: #!/bin/bash
# Description: Check for double spaces and other formatting anomalies in the updated file.
# Search for double spaces in the file
grep -n " " "en/docs/develop-api-proxy/authentication-and-authorization/secure-communication-between-the-bijira-gateway-and-your-backend-with-mutual-tls.md" | head -10Length of output: 1332 I need to verify the exact content at line 85 to confirm the double space issue. Length of output: 64 Fix double space in line 85. Line 85 contains "the certificate" with an extra space. Update to "the certificate". 🤖 Prompt for AI Agents |
||
|
|
||
|  | ||
| {: style="width:500px"} | ||
|
|
||
| 12. To download the certificate in PEM format, click **Download**. You can add this certificate as a trusted certificate in the API backend server. | ||
|
|
||
|
|
@@ -97,7 +97,7 @@ To associate a certificate with the API, follow the steps given below: | |
| 1. On the **Endpoints** page, go to the **Existing Certificates** section. | ||
| 2. Select the certificate you want to associate with the API. | ||
|
|
||
|  | ||
| {: style="width:500px"} | ||
|
|
||
| 3. Click **Save**. | ||
|
|
||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.
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.
🧩 Analysis chain
Verify the corrected relative path is accurate.
The asset path was updated from
../assets/to../../assets/. Given the file's depth aten/docs/develop-api-proxy/authentication-and-authorization/, verify that../../assets/correctly resolves to the project's image assets directory.🏁 Script executed:
Length of output: 1822
I need to inspect the complete file to verify all the changes mentioned in the review comment, particularly the inline style additions and text anomalies.
Length of output: 8426
Fix double-space typo on line 85.
The relative path correction to
../../assets/is correct and resolves to the proper image directory. The Kramdown inline style syntax is valid. However, line 85 contains a formatting error: "This opens the certificate" has an extra space between "the" and "certificate"—should be "This opens the certificate".🤖 Prompt for AI Agents
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.
Is it possible to remove the term Choreo Gateway here and have Gateway or Bijira Gateway?
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.
🧩 Analysis chain
🏁 Script executed:
Length of output: 2057
@pubudu538 Based on my search of the repository, there are no occurrences of "Choreo Gateway" in the codebase. The file under review (
secure-communication-between-the-bijira-gateway-and-your-backend-with-mutual-tls.md) already consistently uses "Bijira Gateway" throughout the document.I did find some references to "Choreo" in other contexts across the documentation:
However, none of these are using "Choreo Gateway" - they're all using "Bijira Gateway" where gateway terminology is needed.
Is there a specific instance of "Choreo Gateway" you'd like me to locate and update? Or are you looking to establish this as a general documentation standard? If you can point me to a specific file or location, I can help update it.
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.
Updated the image
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.