Recently, I got Nginx-0.7.54(official Windows binary), it is simply to install, I'm very apperciate it.
But in this version, Nginx must be started as
[code]
cd c:\nginx
[b]start nginx[/b]
[/code]
My question is how to make it run as [b]a windows service[/b]?
Which is important for a server to start the nginx service before any user is loggin on.
I used to achieve it as
[code]
cd /d c:\nginx\
instsrv Nginx c:\nginx\srvany.exe
[/code]
and add follow register information
[code]
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Nginx\Parameters]
[b]"Application"="C:\\nginx\\nginx.exe"[/b]
"AppParameters"=""
"AppDirectory"="C:\\nginx\\"
[/code]
But these above doesn't work in this version. The reason may be lie in the difference of starting nginx.
Edited 1 time(s). Last edit at 05/02/2009 05:27AM by kernelforce.