您好,欢迎访问一九零五行业门户网

服务器 mac安装nginx环境

前段时间接触到了代理服务器,在摸索下搭建了nginx环境,接下来给大家介绍一下在mac上安装nginx环境的基本步骤。
本文是利用homebrew来安装nginx,先打开终端输入安装命令行ruby -e $(curl -fssl https://raw.githubusercontent.com/homebrew/install/master/install)
来安装homebrew。官网:http://brew.sh/ 。
若出现以下提示,则说明mac已安装nginx或者上一次安装nginx失败留下残余it appears homebrew is already installed. if your intent is to reinstall youshould do the following before running this installer again: rm -rf /usr/local/cellar /usr/local/.git && brew cleanup
按照提示输入删除命令行:rm -rf /usr/local/cellar /usr/local/.git && brew cleanup
删除后,再输入安装命令行。
下载homebrew后会自动安装homebrew,用brew一键安装nginxbrew install nginx
安装后测试nginx是否能正常工作nginx -t正确提示:nginx: the configuration file /usr/local/etc/nginx/nginx.conf syntax is ok nginx: configuration file /usr/local/etc/nginx/nginx.conf test is successful
若有提示权限不够,则需要开放nginx下文件的权限chmod 777 filefile为需要开放权限的文件路径
nginx能正常工作后,先更改nginx的配置文件vim /usr/local/etc/nginx/nginx.conf
server { listen 9999(自定义端口号); server_name localhost; #charset koi8-r; #access_log logs/host.access.log main; location / { root /users/loki/desktop/web/(需要部署应用的文件路径); index index.html index.htm; }
配置文件更改完,启动nginxsudo nginx
nginx的基本用法nginx -s reload #重新加载配置nginx -s reopen #重启nginx -s stop #停止nginx -s quit #退出
选项: -?,-h : 打开帮助信息 -v : 显示版本信息并退出 -v : 显示版本和配置选项信息,然后退出 -t : 检测配置文件是否有语法错误,然后退出 -q : 在检测配置文件期间屏蔽非错误信息 -s signal : 给一个 nginx 主进程发送信号:stop(停止), quit(退出), reopen(重启), reload(重新加载配置文件) -p prefix : 设置前缀路径(默认是:/usr/local/cellar/nginx/1.2.6/) -c filename : 设置配置文件(默认是:/usr/local/etc/nginx/nginx.conf) -g directives : 设置配置文件外的全局指令
以上就介绍了服务器 mac安装nginx环境,包括了方面的内容,希望对php教程有兴趣的朋友有所帮助。
其它类似信息

推荐信息