7 ms·
Side question: Does anyone know a simple caddy-like solution, but for non-HTTP traffic? For example, I want automatic SSL certificates for redis, mongodb, postg
by tandav 3y ago
Side question: Does anyone know a simple caddy-like solution, but for non-HTTP traffic? For example, I want automatic SSL certificates for redis, mongodb, postgresql.
- mthoms 3y agoCaddy can act as a proxy for those services. It's ridiculously easy to set-up. mongo.mydomain.com { reverse_proxy 127.0.0.1:27017 }
- selcuka 3y ago> but for non-HTTP traffic? Doesn't this only work for HTTP too? It may work with MongoDB because it talks HTTP through TCP 27017, but PostgreSQL, for example, has a proprietary protocol on TCP 5432.
- 8organicbits 3y agoI think you need the layer4 module to get this working. https://caddyserver.com/docs/modules/layer4 https://caddyserver.com/docs/modules/layer4
- avtar 3y agostunnel should work for all of the above