[nginx] Add Quassel TLS tunneling

This commit is contained in:
Vincent Ambo 2016-03-24 22:27:54 +01:00
parent 1e3a90646e
commit 2dbff70567
No known key found for this signature in database
GPG key ID: 66F505681DB8F43B
4 changed files with 35 additions and 4 deletions

View file

@ -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;
}