windows 设置nginx开机自启动

将Nginx设置为Windows服务

需要借助"Windows Service Wrapper"小工具,项目地址: https://github.com/kohsuke/winsw

下载地址: http://repo.jenkins-ci.org/releases/com/sun/winsw/winsw/1.18/winsw-1.18-bin.exe

下载该工具后,将其放在 Nginx安装目录下,并重命名为nginx-service.exe,创建配置文件nginx-service.xml(名字要和工具名一样),

创建nginx-service.exe.config(为支持NET 4.0 runtime,默认只支持NET 2.0 runtime)

文件结构如下:

nginx-service.xml 内容如下:

<id>nginx</id>   
    <name>Nginx Service</name>   
    <description>High Performance Nginx Service</description>   
    <logpath>D:\xampp\nginx\logs</logpath>   
    <log mode="roll-by-size">     
        <sizeThreshold>10240</sizeThreshold>     
        <keepFiles>8</keepFiles>   
    </log>   
    <executable>D:\xampp\nginx\nginx.exe</executable>   
    <startarguments>-p D:\xampp\nginx</startarguments>   
    <stopexecutable>D:\xampp\nginx\nginx.exe</stopexecutable>   
    <stoparguments>-p D:\xampp\nginx -s stop</stoparguments> 
</service>

nginx-service.exe.config 内容如下:

<configuration>  
    <startup>    
        <supportedRuntime version="v2.0.50727" />    
        <supportedRuntime version="v4.0" />  
    </startup>  
    <runtime>    
        <generatePublisherEvidence enabled="false"/>   
    </runtime>
</configuration>

在cmd中运行如下命令安装windows服务

D:\xampp\nginx\nginx-service.exe install

之后就可以在Windows服务面板中启动服务了

浏览器中就可以正常访问了


🐞标题:windows 设置nginx开机自启动
👽作者:ruige
🐾地址:https://jjdhhc.com/articles/2021/03/18/1616032338993.html
🙏感恩:谢谢您的打赏与支持!中间图片是我的微信公众号,扫码关注哦!
支付宝支付 微信公众号 微信支付