diff options
author | Vincent Ambo <vincent@kivra.com> | 2016-03-24T21·27+0100 |
---|---|---|
committer | Vincent Ambo <vincent@kivra.com> | 2016-03-24T21·27+0100 |
commit | 2dbff705675b0033fc957c2bc6dfb4905956e05b (patch) | |
tree | e0730d6741c619d5fd2519b31c8a24b05dcbdbd3 /nginx/conf/stream.conf | |
parent | 1e3a90646ed91c45346c440766b7352dda75c2f7 (diff) |
[nginx] Add Quassel TLS tunneling
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; +} |