Skip to content
Snippets Groups Projects
Verified Commit ce46d036 authored by Sheogorath's avatar Sheogorath :european_castle:
Browse files

docs(nginx): Add documentation regarding proxy termination

parent 7faff902
No related branches found
No related tags found
No related merge requests found
Pipeline #19007 passed
......@@ -11,6 +11,7 @@
- [Concepts](concepts/README.md)
- [GitOps](concepts/gitops.md)
- [SRE](concepts/sre.md)
- [Ingress Termination](concepts/ingress-termination.md)
- [Infrastructure Components](components/README.md)
- [calico](components/calico.md)
- [cert-manager](components/cert-manager.md)
......
docs/src/concepts/images/ingress-termination-proxy-protocol.excalidraw.png

374 KiB

docs/src/concepts/images/ingress-termination-rewrite.excalidraw.png

764 KiB

# Ingress Termination
The Shivering-Isles Infrastructure, given it's a local-first infrastructure has challenges in order to optimise traffic flow for local devices, without breaking external access.
## TCP Forwarding
A intentional design decision was to avoid split DNS. Given that all DNS is hosted on Cloudflare with full DNSSEC integration, as well as running devices with active DoT always connecting external DNS Server, made split-DNS a bad implementation.
At the same time, a simple rerouting of all traffic to the external IP would also be problementatic, as it would require either a dedicated IP address or complex source-based routing in order to only route traffic for client networks while allowing VPN traffic to continue to flow to the VPS.
The solution most elegant solution found was to reroute traffic on TCP level. Allow high volume traffic on port 443 to be rerouted using a firewall rule, while keeping the remote IP identical and not touching any VPN or SSH traffic in the process.
A request for the same website looks like this:
![](images/ingress-termination-rewrite.excalidraw.png)
In both cases the connections are terminated on the Kubernetes Cluster. The external user reaches the VPS and is then rerouted over VPN. The local user is rerouted before the connection reaches the internet, resulting in keeping all traffic locally.
Since only TCP connections are forward at any point all TLS termination takes place on the Kubernetes cluster regardless.
## Keeping IP addresses
On the VPS, the TCP connection is handled by an HAProxy instance that speaks proxy-protocol with the Kubernetes ingress service.
On the Unifi Dream Machine it's a simple iptables rule, which redirects the traffic. In order to also use proxy-protocol with the ingress service, it's actually redirected to an HAProxy running in the Kubernetes cluster besides the ingress-nginx. This is mainly due to the limitation in ingress-nginx that doesn't allow mixed proxy-protocol and non-proxy-protocol ports without using custom config templates.
![](images/ingress-termination-proxy-protocol.excalidraw.png)
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment