Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/installation/environment-variables.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
order: 4
order: 5
---

# Environment Variables
Expand Down
2 changes: 2 additions & 0 deletions docs/installation/images/network_topology.excalidraw.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
37 changes: 37 additions & 0 deletions docs/installation/network.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
---
order: 4
---

# Network considerations and topology

![Network topology](images/network_topology.excalidraw.svg)

**External Loadbalancer:**

The external loadbalancer is the most basic (and arguably important) piece of the network.
It implements a consistent interface to incomming traffic from the outside world.

It is generally recommend to assign it a static IP.
This is IP is what is registered in DNS Records (A-Records).

It is the first touch point for all third party initiated traffic.
Hence it is accessed by

- Users
- Incomming Webhooks
- Any sort of Rest API based communication

**Cloud Router:**

The internals of a Coud setup might be quite complex.

As result, by default, outgoing traffic might not have transparent IP address.

Most of the time this is not a problem at all.

However, some third party services might rely on IP-Whitelisting.

This applies to MPM-initiated communication.
For example sending emails via a third party service.

\*\*
Loading