docs: update reverse proxy flow diagram (PNG) - #1469
Closed
Ra9huvansh wants to merge 1 commit into
Closed
Conversation
Contributor
|
Important Review skippedReview was skipped due to path filters ⛔ Files ignored due to path filters (1)
CodeRabbit blocks several paths by default. You can override this behavior by explicitly including those paths in the path filters. For example, including You can disable this status message by setting the
Comment |
Member
|
#1450 was not created in this way. #1468 was implemented instead and will be merged shortly. There are now two workflows and the one in the picture is not required. Default flowchart LR
B[Browser]
subgraph NAC[NetAlertX Container]
N[Nginx listening on port 20211]
A[Service on port 20212]
N -->|Proxy /server to localhost:20212| A
end
B -->|port 20211| N
B -->|port 20212| A
With proxies flowchart LR
B[Browser] -->|HTTPS| S[Any Auth/SSL proxy]
B --> G[Any API consumer<br> eg. Grafana]
subgraph NAC[NetAlertX Container]
N[Nginx listening on port 20211]
N -->|Proxy /server to localhost:20212| A[Service on port 20212]
end
S -->|port 20211| NAC
G -->|port 20212| NAC
|
Author
14 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR updates the reverse proxy flow diagram (PNG) to align with the
GraphQL access changes introduced in #1450.
The SVG hasn’t been updated yet due to the lack of an updated source. Other
documentation is left unchanged to keep the scope of this PR minimal.