We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can FCGI Wrap work with NGinx on OS X? I've installed FCGI Wrap from Homebrew, but there is no plist file to use for service start.
How properly create socket and start service without init.d script?
The text was updated successfully, but these errors were encountered:
Is this project actually alive?
Sorry, something went wrong.
Well, I'am using it on Debian.
Figured out how to launch fcgiwrap with spawn-fcgi:
fcgiwrap
spawn-fcgi
sudo /usr/local/sbin/spawn-fcgi -F 1 -P /var/run/fcgiwrap.pid -s /var/run/fcgiwrap.socket -u user -U user -G group /usr/local/sbin/fcgiwrap
Now trying to create plist for launchctl and launching fcgiwrap at system startup with nginx.
plist
launchctl
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>Label</key> <string>homebrew.mxcl.fcgiwrap</string> <key>RunAtLoad</key> <true/> <key>KeepAlive</key> <false/> <key>ProgramArguments</key> <array> <string>/usr/local/sbin/spawn-fcgi</string> <string>-F</string> <string>1</string> <string>-P</string> <string>/var/run/fcgiwrap.pid</string> <string>-s</string> <string>/var/run/fcgiwrap.socket</string> <string>-u</string> <string>user</string> <string>-U</string> <string>user</string> <string>-G</string> <string>group</string> <string>/usr/local/sbin/fcgiwrap</string> </array> <key>WorkingDirectory</key> <string>/usr/local</string> </dict> </plist>
But at now launchctl doesn't launch it.
No branches or pull requests
Can FCGI Wrap work with NGinx on OS X?
I've installed FCGI Wrap from Homebrew, but there is no plist file to use for service start.
How properly create socket and start service without init.d script?
The text was updated successfully, but these errors were encountered: