diff options
Diffstat (limited to 'nginx/conf/stream.conf')
-rw-r--r-- | nginx/conf/stream.conf | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/nginx/conf/stream.conf b/nginx/conf/stream.conf index 6b13de67773c..dcdf336d2627 100644 --- a/nginx/conf/stream.conf +++ b/nginx/conf/stream.conf @@ -1,6 +1,11 @@ # Gogs SSH tunneling - server { listen 22; proxy_pass gogs-priv.default.svc.cluster.local:22; } + +# Quassel TLS -> TCP tunneling +server { + listen 4242 ssl; + proxy_pass quassel-priv.default.svc.cluster.local:4242; +} |