- 安装
brew install nginx
- 启动
nginx
- 检验是否安装成功
localhost:8080
浏览器输入,如果出现Welcome to Nginx则表示启动成功
- 修改配置文件
vim /usr/local/etc/nginx/nginx.conf
server {
listen 9000; #监听9000端口
server_name location;
root /Users/xxx/maven/apache-maven-3.6.1/repo/;
location / {
autoindex on; #开启索引功能
autoindex_exact_size off; # 关闭计算文件确切大小(单位bytes),只显示大概大小(单位kb、mb、gb)
autoindex_localtime on;
}
location ^~ /market-backend/ {
proxy_pass https://test.xxx.cn/market-backend/; #将所有/maket-backend/路径代理到ip为text.xxx.cn上
}
location ^~ /data-panel/ {
proxy_pass http://192.168.160.70:8082/data-panel/;
}
error_page 404 /404.html;
location = /40x.html {
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
}
- 重启nginx即可生效