blob: 3f788af8334a67b6e572e124c16aa54234f2c64c (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
set -ex
# start fastcgiwrap
rm -f /run/fcgiwrap.socket
nohup fcgiwrap -s unix:/run/fcgiwrap.socket &
while ! [ -S /run/fcgiwrap.socket ]; do sleep .2; done
chown nginx:www-data /run/fcgiwrap.socket
#chmod g+rwx /run/fcgiwrap.socket
#test -f nohup.out && rm -f ./nohup.out
|