Support for Apache2.2 with mod_fcgid on Windows
Brought to you by:
artyom-beilis
Running under Apache 2.2.25/mod_fcgid 2.3.6, my hello application taken from the documentation page, compiled with CppCMS 1.0.4 on MinGW 1.0.18 (all 32-bit), says:
Unix domain sockets are not supported under Windows... (isn't it obvious?)
even though the config file says "socket": "stdin", so there should be no Unix-domain socket involved.
I also tried a config like:
{
"service" : {
"list" : [
{
"api" : "fastcgi",
"socket": "stdin"
}
]
}
}
still the same error shows up.
On Windows fcgid uses named pipes instead of Unix-domain sockets.
Can fcgid be supported on Windows ?
Anonymous
application source code here
config file as above