zoukankan      html  css  js  c++  java
  • windows下快速启动 nginx 和 php-cgi 的两个批处理

    这是启动的批处理:

    set nginx=D:
    ginx-1.9.5
    set php=D:php
    start /MIN %nginx%nginx.exe
    start /MIN %php%php-cgi.exe -b 127.0.0.1:9000 -c %php%php.ini

    这是停止的批处理:

    set nginx=D:
    ginx-1.9.5
    %nginx%nginx.exe -s quit
    taskkill /f /im nginx.exe
    taskkill /f /im php-cgi.exe

    需要根据具体路径修改这两个批处理中的路径。



  • 相关阅读:
    Docker
    Alfred Workflow
    AWS Lambda
    XPath
    WebMagic
    Splash
    Selenium
    代理服务器
    JSONPath
    Sqlserver 查询分组 记录
  • 原文地址:https://www.cnblogs.com/vanwoos/p/4886687.html
Copyright © 2011-2022 走看看