1. 下载winsw
https://github.com/kohsuke/winsw/releases
2. 配置winsw.xml,把winsw放在Nginx同一目录
<configuration> <id>Nginx</id> <name>Nginx</name> <description>Nginx</description> <executable>%BASE%/Nginx.exe</executable> <stopexecutable>%BASE%/Nginx.exe -s stop</stopexecutable> <logpath>%BASE%/logs/</logpath> <logmode>roll</logmode> <depend></depend> </configuration>3.安装,以管理员身份启动cmd
winsw install
winsw uninstall //卸载
4.启动、关闭服务
net start Nginx
net stop Nginx