tvl-depot/nginx/conf/stream.conf

13 lines
245 B
Text
Raw Normal View History

# Gogs SSH tunneling
server {
listen 22;
proxy_pass gogs-priv.default.svc.cluster.local:22;
}
2016-03-24 22:27:54 +01:00
# Quassel TLS -> TCP tunneling
server {
2016-04-14 11:33:55 +02:00
# listen 4242 ssl;
listen 4242;
2016-03-24 22:27:54 +01:00
proxy_pass quassel-priv.default.svc.cluster.local:4242;
}