i have to handle raw socket connections in simple manner: any
connection to specific port should be served with predefined data
(text string), without http headers, wrappings, etc.
Is it possible to do with nginx? May be there is plugin or something
similar.
To be specific - i wish to serve Adobe socket policy file on 843 port.
It is important, that server should send policy request strictly
“as-is”, without additional content inside raw socket answer
On Fri, Aug 28, 2015 at 12:04:07PM +0300, Ilja R. wrote:
i have to handle raw socket connections in simple manner: any
connection to specific port should be served with predefined data
(text string), without http headers, wrappings, etc.
Is it possible to do with nginx? May be there is plugin or something similar.
To be specific - i wish to serve Adobe socket policy file on 843 port.
It is important, that server should send policy request strictly
“as-is”, without additional content inside raw socket answer
If I understand correctly, you want this:
client opens connection, server accepts it
client sends nothing
server sends a pre-defined file
server closes connection
Assuming you have a linux server, simple inetd service is enough.