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