nginx安装在Mac上

安装命令 

brew install nginx

配置文件

/usr/local/etc/nginx/nginx.conf

html文件

/usr/local/Cellar/nginx/1.2.3/html

配置

server {
  listen 80;
  server_name localhost;

  #access_log logs/host.access.log main;

  location / {
    root /Users/to/www;
  index index.html index.htm;
}

猜你喜欢

转载自www.cnblogs.com/kiancyc/p/12424983.html