MacOS install Nginx

安装

brew install nginx

常用命令

启动

./nginx

退出

nginx -s quit

测试

nginx -t

查看nginx是否运行

pidof nginx
ps -A | grep nginx

访问路径

http://localhost:8080/

常用路径

默认安装路径

/usr/local/etc/nginx

默认页面路径

/usr/local/var/www

猜你喜欢

转载自www.cnblogs.com/luoxiaolei/p/12790994.html