Nginx部署前端环境(Mac)
常用命令
# 启动nginx
sudo nginx
# 检查nginx是否已经启动成功
ps -ef|grep nginx
#如果显示有以下内容,说明启动成功
nginx: master process
nginx: worker process
# 查看端口号占用
lsof -i:端口号
#如果什么都没显示,说明端口没有被占用
# 查看nginx.conf文件位置:
nginx -t
#我的文件位置: /opt/homebrew/etc/nginx/nginx.conf
# 查看nginx安装目录(用于将前端文件部署)
brew list nginx
#我的nginx安装目录:/opt/homebrew/Cellar/nginx/1.27.0/
# 重启nginx
sudo nginx -s reload
# 关闭nginx
sudo nginx -s stop
注:分清两个目录
nginx安装目录:/opt/homebrew/Cellar/nginx/1.27.0/
nginx.conf 所在目录:/opt/homebrew/etc/nginx/nginx.conf
前端文件部署
1.将准备好的一系列前端html文件复制到此目录:
/opt/homebrew/Cellar/nginx/1.27.0/html
https://github.com/Fsgojy238/MyImageRepository/blob/master/img/image-20240730213250180.png
https://github.com/Fsgojy238/MyImageRepository/blob/master/img/image-20240730214944758.png
2.修改nginx.conf文件
指定前端项目所在位置:
https://github.com/Fsgojy238/MyImageRepository/blob/master/img/image-20240730214504639.png
3.启动
sudo nginx
标签:opt,nginx,前端,Nginx,Mac,master,conf,homebrew
From: https://www.cnblogs.com/Fsgojy/p/18333418