💾 Archived View for ps.cities.yesterweb.org › en › tcp-streaming-over-nginx.gmi captured on 2024-05-12 at 15:14:11. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2024-05-10)

-=-=-=-=-=-=-

TCP streaming over Nginx

Solution useful for all TCP-based protocols like

Last one does not require TLS, where configuration much simpler

stream {
    server {
        listen 1915;
        proxy_pass 127.0.0.1:1915;
    }
}

For encrypted connections, follow documentation

https://nginx.org/en/docs/stream/ngx_stream_core_module.html