开机启动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

原文地址:https://www.cnblogs.com/linst/p/8352398.html