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