I tried some perl examples of unix domain sockets using abstract names: Created a socket starting with a null character:
my $socket_path = "\0wibble";
using netstat -nlp I can see the socket:
unix 2 [ ACC ] STREAM LISTENING 309510 3448/perl @wibble
In examples all is working, but...
I want to use fastCGI in nginx with unix domain sockets using abstract names:
So in nginx.conf:
Using fastcgi_pass "/tmp/wibble"; #is Ok
But using fastcgi_pass "unix:Any_name"; #is not Ok!!
I tried \0wibble \zwibble \x{0}wibble
and it didnt work!
At fastcgi-wrapper.pl I tried:
Using $socket = FCGI::OpenSocket( "/tmp/wibble", 10 ); #is Ok
But using fastcgi_pass "unix:Any_name"; #is not Ok!!
I tried \0wibble \zwibble \x{0}wibble
and it didnt work!
BTW: I want to use chroot on nginx and chroot in perl, so I cannot use a filesystem socket, as it will be a path out of jail and a security flaw...