nginx安装在Mac上
Posted kiancyc
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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;
}
以上是关于nginx安装在Mac上的主要内容,如果未能解决你的问题,请参考以下文章