赞
踩
如果用Windows系统做服务器,nginx
地址:https://github.com/kohsuke/winsw/releases
里面有不同版本,同时分32位(WinSW.NET2.exe)和64位(WinSW.NET4.exe),请按照自己的服务器属性下载
复制到 nginx 的安装目录放在
(比如我这里是 “myapp.xml”, 如果,你没有重命名,则应该是 “winsw-1.9-bin.xml”)
<?xml version="1.0" encoding="UTF-8" ?>
<service>
<id>nginx</id>
<name>nginx</name>
<description>nginx</description>
<logpath>D:\nginx-1.20\logs</logpath>
<logmode>roll</logmode>
<depend></depend>
<executable>D:\nginx-1.20\nginx.exe</executable>
<stopexecutable>-p D:\nginx-1.20\nginx.exe -s stop</stopexecutable>
</service>
记得更换成自己的路径
myapp.exe install
至此,完工,确认一下:
我的电脑 右键 -> 管理 -> 服务 -> 是否有了个 nginx 呢?启动起来,
在浏览器中 访问 http://localhost 确认一下
再 停止服务,再访问一下 http://localhost 确认一下。
在启动将这个服务设置为自启动
Windows Servcie Wrapper的命令格式如下:
安装服务
myapp.exe install
卸载服务
myapp.exe uninstall
启动服务
myapp.exe start
停止服务
myapp.exe stop
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。