mac nginx 自启动

mac nginx 自启动:通过brew install nginx命令安装的nginx实现自启动可执行如下命令:
sudo cp /usr/local/opt/nginx/*.plist /Library/LaunchDaemons
sudo launchctl load -w /Library/LaunchDaemons/homebrew.mxcl.nginx.plist
执行完毕,重启mac即可

原文地址:https://www.cnblogs.com/kamback/p/8989822.html

时间: 2024-10-09 10:02:32

mac nginx 自启动的相关文章

记一次在win2008下添加nginx自启动服务的操作

为了在win环境下添加nginx自启服务,我度娘了, 找到在cnblogs下(http://www.cnblogs.com/JayK/p/3429795.html)有篇文章是介绍如何添加nginx到win的自启动服务中. 步骤大概是下载个叫windows service Wrapper的程序->配置该程序 下载地址我找了下,在http://www.veryhuo.com/down/html/82094.html有,原来blog的地址连接已经失效了.后续再挖掘, 发现有个新版https://git

MAC NGINX PHP XDEBUG

1. 安装 homebrew 2. 安装nginx ; 终端运行 brew install nginx: 1)给nginx 设置管理员权限:如果不设置管理员权限,80端口是不能监听的: #这里的目录根据你实际安装的目录来填写,默认是这个目录,不同的只是nginx的版本号而已 sudo chown root:wheel /usr/local/Cellar/nginx/1.10.1/bin/nginx sudo chmod u+s /usr/local/Cellar/nginx/1.10.1/bin

mac nginx php php-fpm

#the php-fpm config and cammand... cp /private/etc/php-fpm.conf.default /usr/local/etc/php-fpm.conf php-fpm --fpm-config /usr/local/etc/php-fpm.conf --prefix /usr/local/var ps aux | grep 'php-fpm' killall -HUP php-fpm #the nginx config and cammand...

centos/rhel下实现nginx自启动脚本实例

1. 建立脚本文件nginxd [[email protected]]# vi /etc/init.d/nginxd 插入以下内容   #!/bin/bash # # chkconfig: - 85 15 # description: Nginx is a World Wide Web server. # processname: nginx nginx=/usr/local/nginx/sbin/nginx conf=/usr/local/nginx/conf/nginx.conf case

mac nginx 安装教程

eeking a satisfactory solution to create a local web server for programming in macOS with PHP and MySQL, I was disappointed that the turnkey solutions were far from equaling the WAMP that may exist on Windows. But I forgot macOS is a Unix system, and

Mac nginx 配置

nginx 安装: 在苹果系统下如果要安装nginx,首先要安装brew.安装brew可以查看网站:https://brew.sh: 一条命令即可搞定:/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)": 然后安装nginx:brew install nginx; 等待安装完成. 第二步:配置nginx.conf: 这是比较关键的root的配

mac nginx+ci ,lumen等网页开发环境配置

1.设置/ete/hosts: 把要访问的域名绑定到本地的端口 这样能保证我们登陆域名的时候,可以重定向到本地. 127.0.0.1       mobile.ymt360.com 127.0.0.1       my-uc-test.ymt360.com 127.0.0.1       localhost 255.255.255.255 broadcasthost ::1             localhost ~ 2.nginx 配置+启动. 安装nginx不细讲,主要讲配置(域名引用到

mac Nginx + FastCgi + Spawn-fcgi + c++

1.安装要用到的库 brew install lighttpd brew install nginx brew install Spawn-fcgi //------------------------ 2.编写测试代码 test.cpp #include <fcgi_stdio.h> int main( int argc, char *argv[] ) { while( FCGI_Accept() >= 0 ) { FCGI_printf( "Status: 200 OK\r

Mac + nginx + lua + luasocket + cjson

1. Lua // 官方网站 http://www.lua.org/ 下载源码包// 由于配合 nginx 使用, 所以使用 5.1.X 版本 $ tar xvzf lua-5.1.5.tar.gz $ cd lua-5.1.5 $ make $ sudo make install // 一定要 sudo ------- 下面是安装输出信息 ------ cd src && mkdir -p /usr/local/bin /usr/local/include /usr/local/lib