From 5f9543377d1aadc849d390d74cdd67af03a5f86c Mon Sep 17 00:00:00 2001 From: zleyyij Date: Sun, 19 May 2024 09:46:53 -0600 Subject: [PATCH] vault backup: 2024-05-19 09:46:53 --- ...aking nginx forward VPN and https traffic on tcp 443.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/IT/Making nginx forward VPN and https traffic on tcp 443.md b/IT/Making nginx forward VPN and https traffic on tcp 443.md index 85df605..05c8e58 100644 --- a/IT/Making nginx forward VPN and https traffic on tcp 443.md +++ b/IT/Making nginx forward VPN and https traffic on tcp 443.md @@ -4,7 +4,12 @@ Right now, it appears that I can't do that with one IP because that would requir I modified `/etc/nginx/nginx.conf` to include this block underneath the `http` block: ```nginx - +stream { + server { + listen 443; + proxy_pass 192.168.0.2:443; + } +} ``` ## IP Aliasing