MacOS 开机自启动 NGINX和PHP

1. 开机启动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>
     </array>
     <key>KeepAlive</key>
     <true/>
</dict>
</plist>

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

2. 开机启动php:
在 /Library/LaunchDaemons/ 目录新建 org.php.php-fpm.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.php.php-fpm</string>
     <key>ProgramArguments</key>
     <array>
         <string>/usr/sbin/php-fpm</string>
     </array>
     <key>KeepAlive</key>
     <true/>
</dict>
</plist>

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

猜你喜欢

转载自hudeyong926.iteye.com/blog/2382493
今日推荐