I have nginx plus fast cgi. I wroted starting script that starts nginx with fast cgi. But after nginx update system rewrites this script to the default starting only nginx. Is there any way to avoid this rewrite?
Asked
Active
Viewed 91 times
2 Answers
0
Maybe you should create a separate init.d script for your fastcgi server and leave nginx one untouched. Take a peek to /etc/init.d/skeleton
.

Giovanni Toraldo
- 2,587
- 19
- 27
-
I want to start nginx and cgi together – B14D3 Dec 14 '11 at 10:56
-
So, configure the fastcgi script to be started on the same runlevel of nginx. – Giovanni Toraldo Dec 14 '11 at 14:40
0
Or make it start like this instead of the init.d startup;
nginx -c /path/to/your/nginx.conf exec /path/to/your/start-fastcgi-script.sh
put this in /etc/rc.local

Bart
- 203
- 1
- 2