共计 716 个字符,预计需要花费 2 分钟才能阅读完成。
这篇文章给大家分享的是有关 Mac 下如何安装 Nginx 并设置静态资源服务的内容。丸趣 TV 小编觉得挺实用的,因此分享给大家做个参考,一起跟随丸趣 TV 小编过来看看吧。
需求源于在 mac 通过 vagrant 构建多个开发测试环境,有大多数文件在本地,所以在本机搭建 http 服务,以便 vagrant 启动的虚拟机能通过 wget 下载数据。
mac 下安装 nginx
brew install nginx
启动
sudo nginx
停止
sudo nginx -s stop
安装目录
/usr/local/Cellar/nginx
配置文件目录
/usr/local/etc/nginx
本地 dns 配置文件
/private/etc/hosts
cd /usr/local/etc/nginx
修改 nginx.conf 增加 user 配置
user heidsoft staff
用户 组
静态资源服务
server {
listen 80;
server_name heidsoft.com;
charset utf-8,gbk;
location / {
root /Users/heidsoft/Downloads;
#index index.html index.htm;
autoindex on;
autoindex_exact_size on;
autoindex_localtime on;
}
}
启动后结果如下:
感谢各位的阅读!关于“Mac 下如何安装 Nginx 并设置静态资源服务”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!