zoukankan      html  css  js  c++  java
  • 开机启动nginx 和php-fpm

    开机启动nginx

    在 /Library/LaunchDaemons/ 目录新建 org.macports.nginx.plist 文件

    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC -//Apple Computer//DTD PLIST 1.0//EN
    http://www.apple.com/DTDs/PropertyList-1.0.dtd >
    <plist version="1.0">
    <dict>
         <key>Label</key>
         <string>org.macports.nginx</string>
         <key>ProgramArguments</key>
         <array>
             <string>/usr/local/bin/nginx</string>   //这里是nginx的bin路径
         </array>
         <key>KeepAlive</key>
         <true/>
    </dict>
    </plist>

    加载配置:launchctl load -w /Library/LaunchDaemons/org.macports.nginx.plist

    开机启动指定php-fpm:

    在 /Library/LaunchDaemons/ 目录新建 org.php.php-fpm.plist 文件:

    <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
            <key>Label</key>
            <string>com.php-fpm</string>
            <key>ProgramArguments</key>
            <array>
                    <string>/usr/local/Cellar/php71/7.1.13_24/sbin/php71-fpm</string>  //这里指定php的路径
            </array>
            <key>RunAtLoad</key>
            <true/>
            <key>KeepAlive</key>
            <true/>
    </dict>
    </plist>

    加载配置:launchctl load -w /Library/LaunchDaemons/org.php.php-fpm.plist

  • 相关阅读:
    hdu2844 Coins -----多重背包+二进制优化
    bzoj1452 [JSOI2009]Count ——二维树状数组
    cf685 div2 abcde
    cf675 div2 abcd
    cf669 div2 abcd
    cf668 div2 abcd
    UVA-10795
    cf665 div2 abcd
    Colored Cubes UVALive
    Image Is Everything UVALive
  • 原文地址:https://www.cnblogs.com/linst/p/8352398.html
Copyright © 2011-2022 走看看