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

View Raw

More Information

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

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