about summary refs log tree commit diff
path: root/nginx/conf/stream.conf
diff options
context:
space:
mode:
authorVincent Ambo <vincent@kivra.com>2016-03-24T21·27+0100
committerVincent Ambo <vincent@kivra.com>2016-03-24T21·27+0100
commit2dbff705675b0033fc957c2bc6dfb4905956e05b (patch)
treee0730d6741c619d5fd2519b31c8a24b05dcbdbd3 /nginx/conf/stream.conf
parent1e3a90646ed91c45346c440766b7352dda75c2f7 (diff)
[nginx] Add Quassel TLS tunneling
Diffstat (limited to 'nginx/conf/stream.conf')
-rw-r--r--nginx/conf/stream.conf7
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;
+}