前端集合 - 关注前端技术和互联网免费资源

关注前端技术和互联网免费资源

分类儿

页面儿

搜索儿

前端集合 RSS订阅
Home » mac nginx 配置

MAC OS Nginx 安装和配置教程

发布者:前端集合 // 发布时间:2021年11月16日 // 分类:经验记录 // 访问: 2,268 次 // 热度:

安装brew install nginx配置修改配置文件:vi /usr/local/etc/nginx/nginx.confautoindex on; autoindex_exact_size off; autoindex_localtime on; location / { root /Users/www/; }nginx -s reload大功告成!

Top