赞
踩
brew update
brew search nginx
brew info nginx
brew install nginx
open /usr/local/etc/nginx/ # 配置目录
open /usr/local/Cellar/nginx # 安装目录
nginx
vim /usr/local/etc/nginx/nginx.conf
在 http 里面增加
# 开启目录文件列表
autoindex on;
# 显示出文件的确切大小, 单位是bytes
autoindex_exact_size off;
# 显示的文件时间为文件的服务器时间
autoindex_localtime on;
#设置字符集
charset utf-8,gbk;
server { ... location / { root /Users/zhangsan/projects/; index index.php index.html index.htm; } location ~ \.php$ { root /Users/zhangsan/projects/; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } ... }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。